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 6161389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:28:13+00:00 2026-05-23T21:28:13+00:00

So basically I’m trying to replicate this query as a stored procedure. Use ThisDB

  • 0

So basically I’m trying to replicate this query as a stored procedure.

Use ThisDB   
  SELECT FirstName + ' ' + LastName as FullName ,     
         sum(UnitPrice * Quantity) as 'Total Sales',   
         YEAR(OrderDate) as SalesYear   
  From Employees e   
      Join Orders o on o.EmployeeID = e.EmployeeID    
      join [Order Details] od on od.OrderID = o.OrderID   
      Group by LastName +' ' +FirstName, YEAR(OrderDate)
      Order by 'Total Sales' desc

Edit: I noticed that the old query was gonna fail, but that don’t change too much /edit

Unfortunately, I haven’t found any good examples that help me translate what I know about queries to stored procedure syntax. Here is what i understand so far:

Use ThisDB;
go
CREATE PROCEDURE empSalesByYear as @Emp OUT  
BEGIN  
     Set Emp = (SELECT Employees.FirstName, Employees.LastName ,   
            TotalSales = sum([Order Details].UnitPrice * [OrderDetails].Quantity),
        YEAR(orders.OrderDate) as SalesYear   
             From Employees e  
         Join Orders o on o.EmployeeID = e.EmployeeID
             join [Order Details] od on od.OrderID = o.OrderID
             group by FirstName , LastName
             Order by TotalSales desc)  
END  
GO

Predictably, SQL server give me the finger when I type all this in. . .

My goal here is a stored procedure that takes zero input parameters and outputs a table like the first query.

Thanks.

  • 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-23T21:28:14+00:00Added an answer on May 23, 2026 at 9:28 pm

    Further to my comment, you can just do:

    CREATE PROCEDURE proc_GetEmpSalesByYear AS
    
    SELECT FirstName + ' ' + LastName as FullName ,
    sum(UnitPrice * Quantity) as 'Total Sales',
    YEAR(OrderDate) as SalesYear
    From ThisDB..Employees e
    Join ThisDB..Orders o on o.EmployeeID = e.EmployeeID
    join ThisDB..[Order Details] od on od.OrderID = o.OrderID
    Group by LastName, FirstName Order by 'Total Sales' desc
    
    GO
    

    ..unless you wanted to return a table output parameter?

    (Removed the USE, missed that.. now using db..table format)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically I am trying to do this: <Trigger Property=Item Value={c:CollectionView.NewItemPlaceHolder}> But the syntax is
Basically what I want to do it this: a pdb file contains a location
Basically, something better than this: <input type=file name=myfile size=50> First of all, the browse
Basically I am trying to restart a service from a php web page. Here
Basically, I'm trying to tap into the Soap pipeline in .NET 2.0 - I
Basically I'm trying to accomplish the same thing that mailto:bgates@microsoft.com does in Internet Explorer
Basically, what I'm trying to create is a page of div tags, each has
Basically from a database I am getting data that is formatted like this nameofproject101
Basically I'm attempting to add rows to a table, I need to do this
Basically what I'm trying to do is make a very simple vertical bullet projectile

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.