You should know that it is very rarely a good idea to use the system tables directly. But if you want to do it that way then:
IF EXISTS ( SELECT 1
FROM sysobjects o
INNER JOIN syscolumns c ON o.id = c.id
WHERE o.xtype = 'U'
AND o.name = 'yyy'
AND c.name = 'YourColumnNameGoesHere' )
PRINT 'Column exists!'