insert into
todos (title, description, due_date, is_completed)
values
(
'Buy groceries',
'Purchase milk, eggs, and bread from the store',
'2023-10-15',
false
),
(
'Complete project report',
'Finalize and submit the project report by the end of the week',
'2023-10-20',
false
),
(
'Doctor appointment',
'Annual check-up with Dr. Smith at 10 AM',
'2023-10-18',
false
),
(
'Call plumber',
'Fix the leaking sink in the kitchen',
'2023-10-16',
false
),
(
'Read book',
'Finish reading "The Great Gatsby"',
'2023-10-22',
false
);