Assuming your column has just dates, you will have to convert the result from the dateadd function to just a date, since by default it also includes the time.
where member_time.date = convert(date, dateadd(dd,-1,GETDATE()))
Edit, plus you misspelled the table name in the where clause, compared to what you have in the from clause.