在报表中使用SQL的current_date函数可以方便地获取当前日期,常用于生成当天的报表数据或筛选出特定日期范围内的数据。以下是在报表中应用SQL current_date函数的一些技巧:
SELECT * FROM table_name WHERE DATE(date_column) = current_date
SELECT * FROM table_name WHERE date_column >= current_date - INTERVAL '1 week' AND date_column <= current_date
SELECT SUM(sales_amount) FROM table_name WHERE DATE(date_column) = current_date
SELECT 'Daily Sales Report - ' || current_date AS report_title