03Explorer
Technical User
I am trying to use my MSSQL knowledge to build reports for Informix and the interface I am programming in (Aqua Data Studio) does not seem to aid me in properly using syntax or where errors are in my code. So this could be a two part question.
One is to verifiy that I am using proper aliasing in my column names. Two is there a better application to program Informix with other than Aqua Data Studio that will help just like MSSQL has 'SQL Query Analyzer' or 'SQL Server Management Studio'?
Thanks
One is to verifiy that I am using proper aliasing in my column names. Two is there a better application to program Informix with other than Aqua Data Studio that will help just like MSSQL has 'SQL Query Analyzer' or 'SQL Server Management Studio'?
Thanks
Code:
[b]SELECT[/b]
1 AS 'OrdBy',
c.callstartdate AS 'Date',
c.dnis AS 'dialed_number_id',
'Total Number of calls' AS 'Option',
COUNT (DISTINCT s.callguid) AS 'Calls'