SQL Editor
SQL Money Example
Tables and Columns
Customer
- Id
(int)
- FirstName
(nvarchar)
- LastName
(nvarchar)
- City
(nvarchar)
- Country
(nvarchar)
- Phone
(nvarchar)
Order
- Id
(int)
- OrderDate
(datetime)
- OrderNumber
(nvarchar)
- CustomerId
(int)
- TotalAmount
(decimal)
OrderItem
- Id
(int)
- OrderId
(int)
- ProductId
(int)
- UnitPrice
(decimal)
- Quantity
(int)
Product
- Id
(int)
- ProductName
(nvarchar)
- SupplierId
(int)
- UnitPrice
(decimal)
- Package
(nvarchar)
- IsDiscontinued
(bit)
Supplier
- Id
(int)
- CompanyName
(nvarchar)
- ContactName
(nvarchar)
- ContactTitle
(nvarchar)
- City
(nvarchar)
- Country
(nvarchar)
- Phone
(nvarchar)
- Fax
(nvarchar)
Task:
Create a table with a
MONEY
column.
Click here
for details on
MONEY
.
CREATE TABLE DemoTable ( Id INT IDENTITY, Painting VARCHAR(100), Artist VARCHAR(100), Price MONEY ); GO INSERT INTO DemoTable VALUES ('Salvator Mundi', 'Leonardo da Vinci', 450300000); INSERT INTO DemoTable VALUES ('Pendant Portraits of Maerten Soolmans and Oopjen Coppit', 'Rembrandt van Rijn', 195000000); INSERT INTO DemoTable VALUES ('Portrait of a Young Man Holding a Roundel', 'Sandro Botticelli', 92200000); INSERT INTO DemoTable VALUES ('Massacre of the Innocents', 'Peter Paul Rubens', 76500000); INSERT INTO DemoTable VALUES ('Lot and His Daughters', 'Peter Paul Rubens', 58200000); GO SELECT * FROM DemoTable; GO DROP TABLE DemoTable; GO
Cannot use a ';' (semicolon) in this editor.
About Us
Our Story
Customers
Contact Us
FAQs
Forum
Login
Sign up
Sitemap
Pricing
Product Pricing
Bundle Pricing
Compare Editions
Jobs
Find Jobs
Jobs by Technology
Jobs by Role
Jobs by Location
Jobs by Company
Post a free Job
Companies
Find Companies
Companies by Technology
Companies by Location
List your Company
Products
Overview
Dofactory .NET
Dofactory SQL
Dofactory JS
Dofactory Bundle
Demos
Overview
Analytics App
Ecommerce App
SaaS App
CRM App
33-Day App Factory™
Learning
Overview
SQL Tutorial
SQL Reference
HTML Tutorial
HTML Reference
.NET Design Patterns
C# Coding Standards
JavaScript Tutorial
Connection Strings
Visual Studio Shortcuts
C# Code Examples
Articles
Stay Inspired!
Join other developers and designers who have already signed up for our mailing list.
Terms
Privacy
Cookies
Do Not Sell
Licensing
Made with
in Austin, Texas.
- vsn 44.0.0
© Data & Object Factory, LLC.