Artificial intelligent assistant

How to write down SQL query to get the data count of a table? I have one table named FDR_DATA. There are following fields present in the table. Fields are: B1_NAME, B2_NAME, B3_NAME, ELEMENT, DATUM, WERT. Now I want to query the total number of data in this table and following output will generate. `sql> select count (*) from fdr_data where datum like (select sysdate -1 from dual);` (It only shows the number of counts) But I want to print the datum (date) field beside the count. `DATUM COUNT` `04.05.2016 899019` How to write down the query to get the output like this way? I have tried, `sql> select DATUM, count (*) from fdr_data where datum like (select sysdate -1 from dual)` But couldnot get the desired output.

`sql> select count (*) as fdr_data from fdr_data where datum like (select sysdate -1 from dual);`

Output:


fdr_data
--------
899019

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy d902aedb30db950a518b4d9a3ec60d06