InterviewSolution
Saved Bookmarks
| 1. |
What Does The Following Query Do? $ Sqoop Import --connect Jdbc:mysql://host/dbname --table Employees --where "start_date > '2017-03-31' |
|
Answer» It IMPORTS the EMPLOYEES who have JOINED after 31-Mar-2017. It imports the employees who have joined after 31-Mar-2017. |
|