I'm trying to display only rows where the identity column is divisible by 5. Could someone help with this?

I'm trying to display only rows where the identity column is divisible by 5. Could someone help with this?

select id from mytable mt where (mt.id % 5) = 0
select id from mytable mt where (mt.id % 5) = 0

Thanks very much!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.