InterviewSolution
Saved Bookmarks
| 1. |
What does the following query do?$ sqoop import --connect jdbc:mysql://host/dbname --table EMPLOYEES \ --where "start_date > '2012-11-09' |
|
Answer» It imports the employees who have joined after 9-NOv-2012. |
|