Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

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

PROBLEM STATEMENT
-----------------
Step 1: Create a database jobs_db.
Step 2: Create a table job_listings with the column name and datatype

+---------------+--------------+----------------------------------+
| Field | Type |description |
+---------------+--------------+----------------------------------+
| sl_no | int |Index of the job |
| title | varchar(255) |Title of the job |
| company_name | varchar(255) |Company name of the job |
| location | varchar(255) |location of the job |
| via | varchar(255) |The site where the job listed |
| posted_at | varchar(255) |The time posted for the job |
| schedule_type | varchar(255) |shedule type of the job |
| search_term | varchar(255) |Search term of the job |
| techs | varchar(255) |Technologies required for the job |
+---------------+--------------+----------------------------------+

You might also like