Skip to content

Instantly share code, notes, and snippets.

@mariochavez
Created August 5, 2010 18:14
Show Gist options
  • Save mariochavez/510130 to your computer and use it in GitHub Desktop.
Save mariochavez/510130 to your computer and use it in GitHub Desktop.
USE [Codigos]
GO
/****** Object: Table [dbo].[MaxValues] Script Date: 08/05/2010 11:12:07 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MaxValues](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Amount] [money] NOT NULL,
[Quantity] [decimal](18, 4) NOT NULL,
CONSTRAINT [PK_MaxValues] PRIMARY KEY CLUSTERED
(
[Id] ASC
) ON [PRIMARY]
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment