Parameters

Take advantage of bipp's parameters to capture user input for the visualization:

using parameters bipp

Select the columns:

using parameters columns

using parameters containing

bipp generates the SQL:

SELECT case when t000.description LIKE '%TAPE%'
    then 'yes' else 'no' end AS _0,
    Count(*) AS _1
FROM `online_retail`.`stocks` AS t000
GROUP BY 1

Fetch the data:

using parameters results

IN THIS PAGE