Id File-Name Descrption
1 yyyy Started
2 yyyy incompleted
3 rrrr Started
4 tttt started
5 uuuu started
6 rrrr completed
7 tttt completed
8 uuuu incompleted
A table having three rows where I need to write a query/condition to get all the completed records in that table.
Result should be
rrrr
tttt
Select * from Table_name where file-name = start and file-name = complete; ---It's not working...