Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3950862
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:39:43+00:00 2026-05-20T01:39:43+00:00

I have the following code in a very long stored procedure, where P equals

  • 0

I have the following code in a very long stored procedure, where P equals the Products table:

SELECT
P.*,
etc1,
etc2

Which would give me “ProductID” and so on.

I would like to select it with a prefix such as:

SELECT
P.* AS P_*,
etc1,
etc2

Which would give me “P_ProductID” and so on.

Is this possible to do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T01:39:43+00:00Added an answer on May 20, 2026 at 1:39 am

    Not unless you use dynamic SQL. It is very uncommon to require such a thing though, are you sure you need it?

    Working example

    create table Products (ProductID int, Price money, Description varchar(10));
    insert Products select 1, 12.3, 'apples'
    insert Products select 2, 2.4, 'bananas'
    create table OrderDetails (OrderID int, ProductID int, Qty int)
    insert into OrderDetails select 11,1, 2
    insert into OrderDetails select 11,2, 4
    
    declare @sql nvarchar(max)
    select @sql = coalesce(@sql+',','') +
        'P.' + QuoteName(Column_name) + ' as ' + QuoteName('P_' + Column_name)
    from INFORMATION_SCHEMA.COLUMNS
    where TABLE_NAME = 'Products'
    order by ORDINAL_POSITION
    set @sql = '
    select ' + @sql + ', O.OrderID, O.Qty
    from Products P
    inner join OrderDetails O on P.ProductID = O.ProductID
    '
    --print @sql   :: uncomment if you need to see it
    exec (@sql)
    

    Output:

    P_ProductID P_Price               P_Description OrderID     Qty
    ----------- --------------------- ------------- ----------- -----------
    1           12.30                 apples        11          2
    2           2.40                  bananas       11          4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following PHP code doing a very simple select into a table.
I have the following code in specman: var x := some.very.long.path.to.a.variable.in.another.struct; while (x ==
Say for example I have the following code: <h3>My very long title</h3> <h3>Another long
I have the following line of code called very often: var configValue = System.Configuration.ConfigurationManager.AppSettings[ConfigValueKey];
Very simply put, I have the following code snippet: FILE* test = fopen(C:\\core.u, w);
This is very weird. I have the following code: Assert.AreEqual(new DateTime(2000, 1, 1), DateTime.ParseExact(2000,
I have got the following very simple code: function init() { var articleTabs =
I have following Code Block Which I tried to optimize in the Optimized section
In Excel 2007 I have the following very simple code in VBA: Public Type
I am a very newbie in Python I have the following code: from SOAPpy

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.