Jump to content

Converting vertical database to horizontal


mtoynbee

Recommended Posts

Hello,

 

I have a vertical design database base as follows:

 

CREATE TABLE [dbo].[FORMENTRIES](
[ProductID] [int] NOT NULL,
[FieldUSINC] [int] NOT NULL,
[TableCol] [int] NOT NULL,
[TableRow] [int] NOT NULL,
[sTRValue] [char](254) NULL,
[iNTValue] [int] NULL,
[Language] [int] NOT NULL,
[LineNumber] [int] NOT NULL,
[DoubleValue] [float] NULL,
CONSTRAINT [PK_FORMENTRIES] PRIMARY KEY CLUSTERED 
(
[ProductID] ASC,
[FieldUSINC] ASC,
[TableCol] ASC,
[TableRow] ASC,
[Language] ASC,
[LineNumber] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

 

I need to create a query that will display in a horizontal view using FieldUSINC as the column name and include multiple rows per item via the TableRow column.

 

Can anyone suggest some SQL code or post some links. I am using SQL Server 2000 v8.0.818 so I don't think PIVOT will be compatible.

 

Any help will be appreciated.

Link to comment
Share on other sites

  • 3 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.