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 ==
I have the following very simple code snippet which is loaded from a separate
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];
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 =
Let's say I have the following, very simple block of code: <script> function hasVal(field)
I have the following static code in a HTML template: <table> <thead></thead> <tbody></tbody> </table>
I have a very long string in database(MS SQL) table such as '99024','99050','99070','99143','99173','99191','99201','99202','99203','99204','99211','99212','99213','99214','99215','99217','99218','99219','99221','99222','99231','99232','99238','99239','99356','99357','99371','99374','99381','99382','99383','99384','99385','99386','99391','99392' Right

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.