I have a task to automatically bill all registered patients in PatientsInfo
table an Annual Bill of N2,500 base on the DateCreated
column.
Certainly I will use a stored procedure to insert these records into the PatientDebit
table and create a SQL Job to perform this procedure.
How will I select *
patients in PatientsInfo
table where DateCreated
is now 1 yr old for me to insert into another table PatientDebit
.
I have my algorithm like this:
PatientsInfo
table DateCreated
PatientDebit
table with the bill of N2,500 Please how do I write the script?
To insert only date value, use curdate() in MySQL. With that, if you want to get the entire datetime, then you can use now() method. Insert both date and time with the help of now().
Use DATEADD, i.e.:
SELECT DATEADD(year, 1, '2006-08-30')
Ref.: http://msdn.microsoft.com/en-us/library/ms186819.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With