Sql y c#
Tengo esta consulta en sql.
como la paso a c#.. Porke me marka errores :D
declaro l variable string i le asigno esto pero los parentesis y esoo :D porfiiss
select lactancias,
(select count(*)
from rastro y
where y.lactancias = 1
) as "Lactancia 1",
(select count(*)
from rastro y
where y.lactancias =2) as "Lactancias 2",
(select count(*)
from rastro y
where y.lactancias = 3) as "Lactancias 3",
(select count (*) from rastro y where y.lactancias = 4) as "Lactancia 4"
from rastro
group by lactancias
como la paso a c#.. Porke me marka errores :D
declaro l variable string i le asigno esto pero los parentesis y esoo :D porfiiss
select lactancias,
(select count(*)
from rastro y
where y.lactancias = 1
) as "Lactancia 1",
(select count(*)
from rastro y
where y.lactancias =2) as "Lactancias 2",
(select count(*)
from rastro y
where y.lactancias = 3) as "Lactancias 3",
(select count (*) from rastro y where y.lactancias = 4) as "Lactancia 4"
from rastro
group by lactancias
1 respuesta
Respuesta de Jorge Vila