How do i add a calculated column to an Access table in SQL?
I know i can add a column with SQL like this:
ALTER TABLE Clients ADD COLUMN AccountDate
What do you want it to calculate? Have you tried something like:
ALTER TABLE Clients ADD COLUMN AccountDate AS (Column1 * Column2);