Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select item, [count]/2
from myTable
union all
select item, [count]/2
from myTable
order by item
select item, [count]/2
from myTable
cross join
( select 1 as no union all
select 2
) blah
select A.item, B.[count]
from myTable A
inner join
( select item, count(*) as [count]
from myTable
group by item
) B
in A.item = B.item