I created the following table using the MONEY datatype but all of my queries will not display a dollar sign in the output.
How do I display a dollar sign for my outputs in the AccountPrice column?
CREATE TABLE Account
(
AccountID CHAR(20) PRIMARY KEY NOT NULL,
AccountName CHAR(30) NOT NULL,
AccountDescription CHAR(50) NOT NULL,
AccountPrice MONEY NOT NULL,
);
Thank you
How do I display a dollar sign for my outputs in the AccountPrice column?
CREATE TABLE Account
(
AccountID CHAR(20) PRIMARY KEY NOT NULL,
AccountName CHAR(30) NOT NULL,
AccountDescription CHAR(50) NOT NULL,
AccountPrice MONEY NOT NULL,
);
Thank you