Enhanced MySQL Python IT Recruiter Guide
Enhanced MySQL Python IT Recruiter Guide
MySQL Definitions
DDL (Data Definition Language): Commands that define the structure of a database.
DML (Data Manipulation Language): Commands that manage data inside tables.
DCL (Data Control Language): Commands that control access to the database.
1. INNER JOIN: Returns records that have matching values in both tables.
2. LEFT JOIN (or LEFT OUTER JOIN): Returns all records from the left table, and matched records from the right tab
3. RIGHT JOIN (or RIGHT OUTER JOIN): Returns all records from the right table, and matched records from the left
4. FULL JOIN (or FULL OUTER JOIN): Returns all records when there is a match in either left or right table.
MySQL & Python Skills Guide for IT Recruiters
- (SELECT ... FROM A LEFT JOIN B ...) UNION (SELECT ... FROM A RIGHT JOIN B ...)
MySQL & Python Skills Guide for IT Recruiters