For a given normal distribution, figuring out what percentage of scores fall between two bounds is straight forward. Calculate the z score and look it up on a z table. Or one can also evaluate the integral:
$\int\frac{1}{\sigma \sqrt{2\pi}}e^{\frac{-(\mu-x)^2}{2\sigma^2}}dx$
from the given bounds, where sigma is the standard deviation and mu is the mean. In fact this is a way to calculate the values on a given z-table. You can use this for sampling distributions, but it often doesn't always estimate the true confidence interval correctly. Hence t-statistics.
My question was where do t-tables come from? Is there an adjusted equation for them? Or is there a correction factor?