Link to home
Start Free TrialLog in
Avatar of TXAmmonite
TXAmmoniteFlag for United States of America

asked on

Is a dynamic column alias possible?

Hello,

I run a stored procedure every quarter that has one input parameter, the current date.  

For one data item, values are secured for the current and past 11 quarters.  The table column names for this field are:  Current, Current_Minus1, Current_Minus2…Current_Minus11.  

I would like for my output to have different “quarter names” for the columns instead of the actual column names.  

A hard-coded “AS” Statement works great, for example:
Select Current as 1Q04, Current_Minus1 as 4Q03, Current_Minus2 as 3Q03, etc.
But I do not want to change this every quarter.

Is there a type of variable that can be used instead of the hard-coded values???  I would like to calculate the column names and place them in a variable so that I could code something like:

“Select Current as @CurrentQtr, Current_Minus1 as @CurrentQtrMinus1, Current_Minus2 as @CurrentQtrMinus2, … “

I have attempted this approach using several differnt variable types and always receive an error.  Is there a specific variable type that works or appropriate syntax to make this possible??  If not - Any other ideas that might make this work?

Down the road I will be creating an Access front-end screen that will allow users to create this report themselves for a specific current date by clicking a button that will execute the stored procedure generate a spreadsheet.  If the approach above is not possible in SQL perhaps it would be possible in Access??

Thank you for your assistance!

TXAmmonite (David)
Avatar of Lowfatspread
Lowfatspread
Flag of United Kingdom of Great Britain and Northern Ireland image

this is a presentation issue and you should get your GUI / Frontend to
name the columns appropriately...

that should be possible in access


it is possible in SQL Server by using dynamic sql
but i would recommend it's use for this scenario...  

e.g.
declare SQLSTR varchar(8000)

set @sqlstr= “Select Current as @CurrentQtr, Current_Minus1 as @CurrentQtrMinus1, Current_Minus2 as @CurrentQtrMinus2, … “

Exec (@SQLSTR)


hth


Avatar of TXAmmonite

ASKER

hth,

I wish it were that simple - I had already tried this approach.  
All variables where declared as varchars and populated (selected each to verify)

Created the dynamic SQL as:
set @SQLSTR= 'Select Current as @Curr_Qtr,
Current_Minus1 as @Curr_QDate_Minus1,
Current_Minus2 as @Curr_QDate_Minus2
from Tbl_MyTablel'
Exec (@SQLSTR)

I received the error:

Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near '@Curr_Qtr'.

After removing the first "@" the error would change to
Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near '@Curr_QDate_Minus1'.

Removing all "@"s allowed the query to execute.  

Still looking for that special variable type or format.

Thanks,
David
ASKER CERTIFIED SOLUTION
Avatar of EugeneZ
EugeneZ
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
EugeneZ

Thanks - this worked great!
TXAmmonite