SELECT b.name as TableName,a.name as columnnameFrom syscolumns aINNER JOIN sysobjects b ON a.id=b.idwhere b.type='U'AND a.name like 'store%'