Untitled

 avatar
unknown
plain_text
2 years ago
846 B
25
Indexable
SELECT invoice_date
FROM invoice
WHERE EXTRACT(MONTH FROM CAST(invoice_date AS timestamp)) IN('0',
                                                             '1',
                                                             '2',
                                                             '3',
                                                             '4',
                                                             '5',
                                                              '6',
                                                              '7',
                                                              '8',
                                                              '9',
                                                              '10',
                                                              '11');
Editor is loading...