是否可以在不添加列族的情况下创建 hbase 表,例如 create 'emp','personal data','professional data'
个人数据和专业数据是列族,我想在不添加列族的情况下向表中添加字段
例如
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.