AI Powered Job Portal Project
AI Powered Job Portal Project
Objective:
The objective of this project is to create a Job Portal using SQL that simulates job listings, applicant
and company information. We will also implement SQL queries to extract useful information, such as
- Jobs: Stores job listings with job title, description, required skills, etc.
1. Users Table:
2. Companies Table:
4. Applications Table:
name VARCHAR(100),
skills VARCHAR(255)
);
company_name VARCHAR(100),
industry VARCHAR(100)
);
company_id INT,
job_title VARCHAR(100),
job_description TEXT,
required_skills VARCHAR(255),
);
job_id INT,
user_id INT,
application_date DATE,
);
-- Insert Users
VALUES
-- Insert Companies
VALUES
-- Insert Jobs
VALUES
(201, 101, 'Software Developer', 'Develop and maintain software applications.', 'Java, SQL'),
(202, 102, 'Data Analyst', 'Analyze and interpret data.', 'Python, Data Analysis'),
(203, 103, 'AI Engineer', 'Develop AI models and algorithms.', 'Python, Machine Learning, AI');
-- Insert Applications
VALUES
FROM Jobs J
FROM Applications A
FROM Users U
WHERE U.user_id = 1;
FROM Users U