Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
vaishanavi
Starting Member
9 Posts |
Posted - 2009-03-20 : 00:43:20
|
Hi, 1.select dist_code,Dist_name from District when we are binding to a dataset, in the expressionwhen fields are selected from dataset it is showing dist_code as sum(dist_code)and dist_name as First(dist_name) Issue : it is repeating to each and every table..that if it is numericfield it is showing sum (Field_name) and if it is varchar it is showingFirst (field_name) 2.select count(category ) from Table_name where categorytype='A' If we want count from a particular column it is showing the sum(field_name) 3. when we are binding more than one datasets, in expressions, it is showing only fields in first dataset, but it is not showing 2nd and 3rd dataset fileds |
|
|
|
|