Hi sivaji,
Hive table coumns and hbase columas tables are not matching. you are trying to create hive table with 2 coulmns but in hbase table you have 3 columns. And one mire thing is specify the hbase table name.
try the Following query format
CREATE TABLE hbase_stocks(key INT, name STRING, price FLOAT)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,stock:val")
TBLPROPERTIES ("
hbase.table.name" = "stocks");
If this query also not working then try with external table option