With the emergence of mobile devices a bit more control over how retrieved information is displayed would be great, particularly with regards to tables.
At present we only have two real options for displaying tables, either the default in which all information is displayed on one row or dbr.pageview where all data is displayed in one column.
It would be useful for people that are designing reports that they know will for example always be displayed on a 9 or 10 inch tablet to be able to choose that information be displayed across X number of columns or rows within a table.
As examples something along the lines of dbr.columncount or dbr.rowcount to automatically use the defined number of rows or columns per line of returned data, or possibly something along the lines of dbr.break indicating that anything after the dbr.break starts on a new row, such as:
SELECT column1, column2, column3, dbr.break, column4, column5, column6 FROM somedatabase
would display the results similar to
column1data : column2data : column3data
column4data : column5data : column6data