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 |
|
bentong
Starting Member
5 Posts |
Posted - 2007-08-15 : 00:41:41
|
| pls someone help me about adding alias column or column alias here's my codeselect (select count(*) from dto_client_dtl where dto_client_dtl.testStage is null or (dto_client_dtl.testStage = 'INI' and dto_client_dtl.testResult = 'POS')) as 'NoOfPendingTransaction', (select count(*) from dto_client_dtl where dto_client_dtl.testStage in ('CHM','CHA') and dto_client_dtl.testResult = 'POS') as 'NoOfConfirmedPositive', (select count(*) from dto_client_dtl where dto_client_dtl.testStage in ('CHM','CHA') and dto_client_dtl.testResult = 'NEG') as 'NoOfConfirmedNegative', (select count(*) from dto_client_dtl where dto_client_dtl.testStage is not null and dto_client_dtl.testResult = 'POS') as 'TotalNoOfScreeningPositive', (select count(*) from dto_client_dtl where dto_client_dtl.testStage = 'INI' and dto_client_dtl.testResult = 'NEG') as 'TotalNoOfScreeningNegative', (select count(*) from dto_client_dtl where dto_client_dtl.tranStat in ('CCn','TCN')) as 'TotalNoOfCancelledTxns',('NoOfPendingTransaction'+'TotalNoOfScreeningPositive'+'TotalNoOfScreeningNegative') as 'SubTotal'from dto_client_dtlwhen i run this code the output is Truncated incorrect DOUBLE value: 'NoOfPendingTransaction'Truncated incorrect DOUBLE value: 'TotalNoOfScreeningPositive'Truncated incorrect DOUBLE value: 'TotalNoOfScreeningNegative' |
|
|
DonAtWork
Master Smack Fu Yak Hacker
2167 Posts |
Posted - 2007-08-15 : 11:09:45
|
| Follow the links in my signature and repost your question.[Signature]For fast help, follow this link:http://weblogs.sqlteam.com/brettk/archive/2005/05/25.aspxLearn SQLhttp://www.sql-tutorial.net/ http://www.firstsql.com/tutor.htm http://www.w3schools.com/sql/default.asp |
 |
|
|
jhermiz
3564 Posts |
Posted - 2007-08-15 : 11:40:01
|
| Is this a mysql issue or sql server issue? Looks like the former...anyhow this part is prolly throwing the error:(select count(*)from dto_client_dtlwhere dto_client_dtl.tranStat in ('CCn','TCN')) as 'TotalNoOfCancelledTxns',('NoOfPendingTransaction'+'TotalNoOfScreeningPositive'+'TotalNoOfScreeningNegative') as 'SubTotal'First take that out and run the query and see what happens. If it runs fine its this line.Weblog -- [url]http://weblogs.sqlteam.com/jhermiz[/url] |
 |
|
|
|
|
|
|
|