I am working on a project to convert SQL Server syntax to Teradata and am using Queryman.
Here is some basic code I am trying to convert:
select cast(((select cast(count(*) as numeric) from Dimtable where StdCode is not null) /(select cast(count(*) as numeric) from Dimtable)) * 100 as numeric(5,2))
as '% Std Values'
Also information/links on converting joins would be helpful.
Thanks!
Here is some basic code I am trying to convert:
select cast(((select cast(count(*) as numeric) from Dimtable where StdCode is not null) /(select cast(count(*) as numeric) from Dimtable)) * 100 as numeric(5,2))
as '% Std Values'
Also information/links on converting joins would be helpful.
Thanks!