O
Oka Morikawa
How do I accomplish this kind of T-SQL in DataTable?
SELECT SizeW
FROM dbo.Product
GROUP BY SizeW
I need to get a list of used widths on Product table and I could to it with
IF row by row but is this possible to make with somehow
DataTable.Column.Expression or someway on DataTable.Compute?
Thanks!
Oka Morikawa
SELECT SizeW
FROM dbo.Product
GROUP BY SizeW
I need to get a list of used widths on Product table and I could to it with
IF row by row but is this possible to make with somehow
DataTable.Column.Expression or someway on DataTable.Compute?
Thanks!
Oka Morikawa