with table1 as (select count(project_name) as counts, project_name, nft_address
from ethereum.core.ez_nft_sales
where project_name != ''
and platform_name = 'opensea'
group by project_name, nft_address
order by project_name asc
)
select * from table1 where counts > 500