is that possible to create a hbase table without adding column family, for instance create 'emp','personal data','professional data'
personal data & professional data are the column family, i want to add fields to table without adding column family
for example
HTable hTable = new HTable(config, "TableName");
Put p = new Put(Bytes.toBytes("ROW"));
p.add(Bytes.toBytes("VALUES");
//only the values need to be added to the column without column family.