Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The Customers table has a new field indicating whether the customer pays capital gains tax.

--MSSQL
ALTER TABLE CUSTOMERS ADD PAYS_CAPITAL_GAINS_TAX bit NULL;
--ORACLE VERSION
ALTER TABLE CUSTOMERS ADD PAYS_CAPITAL_GAINS_TAX NUMBER(1,0) NULL;
  • No labels