YouAssuming you only want to test the values in the 2nd column, you should be using either this:
awk '$2 ~ /entry/' file
ordoing this:
awk '$2 ~ /entry/{print $2}' file
depending on what you mean by Need to extract all entries with ... and assuming you only want to test the values in the 2nd column.