View Specific Records in Tables

      Select * from <table> where <column name> = ‘string’ ex. Select * from _obj_2 where IDX_SSN = ‘111-22-3333’

      Select * from <table> where <column name> like ‘%partial string%’  

For example, Select * from _obj_2 where IDX_SSN like ‘%111-22-3%’