Thursday 10 January 2019

Sqoop


1. create database sqoop;
            2.  Use sqoop;
            3. Create table customer( id varchr(3), name varchar(10), age varchar(3), sal  
                integer(6));
            4. insert into values (‘1’,’john’,’45’,45000);
            5. select * from customer

1 comment: