Compare dates

Need to find all records where date in one filed is greater than date in other.

Input:

 
ABC 2 Filed3 CDG * X 20080903 20081031 180.00
ABD 2 Filed3 CDG * X 20081101 20081031 190.00
ABE 2 Filed3 CDG * X 20090903 20081031 120.00
ABC 2 Filed3 CDG * X 20080903 20081015 130.00

Output:

 
ABD 2 Filed3 CDG * X 20081101 20081031 190.00
ABE 2 Filed3 CDG * X 20090903 20081031 120.00

So records where first date is greater than second.

First date is always on 7th position, secon is always on 8th position (delimiter is blank space).

Thank you.

Something like this?

awk '$7 > $8' file

Yea :), thanks is great. I was thinking I have to compare years, then months and then days; but because of the format of the date this is enought.