To drop a column family, we have below commands.
hbase> disable tablename
hbase> alter 'tablename',{NAME=>'COLFAM NAME',METHOD=>'delete}
If there is a columnfamily: 'empdetails' in a table 'emptable' with columns: 'col1,col2', is there a way to delete a particular column from a column family ? Im not going to implement it but this is just for my knowledge and to know if there is such possibility.