ALTER TABLE your_table ADD COLUMN dba_date DATE NOT NULL DEFAULT (CURRENT_DATE);
ALTER TABLE your_table ADD COLUMN dba_date DATE NULL; -- populate in batches (see next) ALTER TABLE your_table MODIFY COLUMN dba_date DATE NOT NULL DEFAULT (CURRENT_DATE);
Florida Fictitious Name Registration - Division of Corporations
-- Trigger on new database creation (requires event trigger)
CREATE INDEX idx_cover ON your_table (status, dba_date, id);
This query fetches all rows from your table, ordering them by the your_date_column in descending order (newest first).
© 2026. Jaypee Brothers Medical Publishers (P) Ltd. | All Rights Reserved.