Code .NET SQL
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
Le Deal du moment : -45%
PC Portable LG Gram 17″ Intel Evo Core i7 32 Go ...
Voir le deal
1099.99 €

Creation nouvelle table + test

Aller en bas

Creation nouvelle table + test Empty Creation nouvelle table + test

Message  Admin Lun 7 Juil - 11:06

Code:
/****** Object:  Table [dbo].[APP_GROUP]    Script Date: 7/7/2008 10:05:30 AM ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[APP_GROUP]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[APP_GROUP]
GO

if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[APP_GROUP]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
 BEGIN
CREATE TABLE [dbo].[APP_GROUP] (
   [ID_APP_GROUP] [int] IDENTITY (1, 1) NOT NULL ,
   [DESCRIPTION] [varchar] (-1) COLLATE French_CI_AS NULL ,
   [VALID] [bit] NULL ,
   CONSTRAINT [PK_APP_GROUP] PRIMARY KEY  CLUSTERED
   (
      [ID_APP_GROUP]
   )  ON [PRIMARY]
) ON [PRIMARY]
END

GO

Admin
Admin

Messages : 91
Date d'inscription : 20/09/2007

https://moaner101.forumpro.fr

Revenir en haut Aller en bas

Revenir en haut

- Sujets similaires

 
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum
Ne ratez plus aucun deal !
Abonnez-vous pour recevoir par notification une sélection des meilleurs deals chaque jour.
IgnorerAutoriser