This is a test question that uses bold and includes a list of things.
There is also code:
CREATE TABLE dbo.SalesSample
( SaleKey INT NOT NULL IDENTITY(1,1) CONSTRAINT SalesSamplePK PRIMARY KEY
, SaleAmount INT
, SaleTax INT
, SaleFreight INT
, SaleTotal INT
)
GO