The first thing you should do is read about "Normalization". Read it several times. And when you think you understand it, read it again. Not trying to be flippant, but you need to have a good structure or you will be re-designing - maybe several times. I still read chapters on normalization.
Then search the forum for book recommendations. I have around 7 books I use as references.
Here is one place to start.... Crystal's site:
http://www.accessmvp.com/Strive4Peace/
(also check out http://mvps.org/access/tencommandments.htm )
-what medications are they taking?
-what dosage of each (500ml a day, 1000ml a day, etc.)?
-what are their medical and psychological diagnoses?
To start with, besides the table for Patient data, you would need a table for Medications, Dosages, and Diagnoses (included medical and psychological).
They would be related (IMO)
Code:
one -------------> many
patient Diagnoses (one patient to many Diagnoses )
patient medications (one patient to many medications)
medications Dosages (one medication to many Dosages)
I don't know the rest of your requirements, so this is just a start.