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

  • Home
  • SEARCH
  • 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 6803885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:23:56+00:00 2026-05-26T19:23:56+00:00

I am working on something I am trying to create a user defined function

  • 0

I am working on something I am trying to create a user defined function named Employee_Name. Pass an Employee Id as a parameter.

This is what I have so far :

Create function Employee_name (
@EmployeeID int 
 )
 Return Table
 as 
 Return(
         Select * From Employees
    Where Employee_name = @EmplyeeId)
 go
 SELECT * FROM Employee_name

But I am not thinking I am doing this right because where the return table is mark with red. Which means an error. I am still learning this, its kinda confusing for me. I am woundering if the return table should be only a return.

  • 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-26T19:23:56+00:00Added an answer on May 26, 2026 at 7:23 pm

    You need to pass an Employee ID to your user defined function

    SELECT * FROM Employee_name (1)
    

    Also it should be RETURNS TABLE. So

    CREATE FUNCTION Employee_name 
    (
        @EmployeeID int 
    )
    RETURNS TABLE
    AS
    RETURN
    (
        SELECT * FROM Employees
        WHERE Employee_name = @EmployeeID
    )
    GO
    
    SELECT * FROM Employee_name (1)
    

    You might have some naming collision between the name of your function and the name of the field in the Employees table though (both appear to be called Employee_name)

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

Sidebar

Related Questions

I'm trying to get this simple PowerShell script working, but I think something is
I am trying to create a function with a variant record-type parameter that allows
I am trying to get the channel api working. This is what I have
I have been trying to understand and get something working with dependency properties. I
I have been trying to create beta invites that each existing user can send
I'm working on a little something and I am trying to figure out whether
I am willing to develop a mobile application. I wish to have something working
I would appreciate some help with something I working on and have not done
I'm still learning what hibernate can do and this time i'm trying something that
I would like to create user in my user table when new user have

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.