I would like to delete on record from impala table. Below I have used to delete the record from the table.
This is My Query :
DELETE FROM sample.employee_details WHERE sno=5 AND name='XYZ'AND age=26;
suggest the best way to remove a record from the table.