The following sqoop command will be used to import the data from RDBMS table into HBase table, if the table does not exists in HBase it will create a new table and import the data into this table
sqoop import \
--query 'select emp_id, emp_name, emp_sal from employee where $CONDITIONS' \
...