Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Something easy you can do. Use a query similar to this in your tDBInput component:
SELECT
(select count(*) from mydb.myschema.mytable where myfield = 'YES') as "Yes Column",
(select count(*) from mydb.myschema.mytable where myfield = 'NO') as "No Column";
write the results to a new table with tDBoutput....
tDBInput -----main------> tDBoutput