Consider we have a HBase table with rowkey Lname_Fname_DOB. Consider the following rowkeys were inserted in HBase table Cusack_Tim_06062006,Aptrow_Jill_07072007,Cruise_Tom_06052006.
I have a UI, where users can enter the Fname Lname and DOB in separate text boxes. The question I have is if user enters only C in Lname and T in Fname, is there a way to get results of rowkey Cusack_Tim_06062006 and Cruise_Tom_06052006? So basically users may enter only parts of the rowkey, in RDBMS I could use the like function, not sure how to handle this in HBase.