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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:11:46+00:00 2026-06-13T17:11:46+00:00

I have two tables in my database, one is Transactions and the other is

  • 0

I have two tables in my database, one is Transactions and the other is TransactionHistories. The latter is essentially an auditing table, whereby a trigger executes on insert, update and delete on Transactions to capture a screenshot of the data.

I am successfully retrieving all of the data stored in the Transactions table where the columns match, but the difficulty comes where I am trying to retrieve data from another table using a foreign key. For instance:

The transaction table has a field “TransactionType_TransactionTypeId”, but in the audit table we wish to store its ‘name’ equivalent as “TransactionTypeName”. This needs to be populated from the “TransactionTypes” table, which has the fields “TransactionTypeId” and “Name”.

I am struggling to write a query to retrieve this as we wish. I am trying something similar to the following but having little success:

SELECT @TransactionTypeName=Name
FROM TransactionTypes
WHERE inserted.TransactionType_TransactionTypeId=TransactionTypes.TransactionTypeId;

I’m assuming that is a syntactic nightmare. If someone could point me in the right direction I would be extremely grateful!

  • 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-06-13T17:11:48+00:00Added an answer on June 13, 2026 at 5:11 pm

    well to get a name you should do the following

    select @TransactionTypeName = TT.Name
    from inserted as i
        left outer join TransactionTypes as TT on TT.TransactionTypeId = i.TransactionType_TransactionTypeId
    

    but you have to know that inserted table can have more than one row, and you are getting value for only one row.

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

Sidebar

Related Questions

In a MySQL database I have two tables linked in a join. One table
What I have is two tables inside of a mysql database. One table contains
I have two tables in my MySQL database, one is a library of all
I have two related tables in my database: Page and Tag. One Page can
I have one database table TABLE_TIPS with two value 1. tips_id (auto increment) 2.
I have two tables. One table is meant to serve as a transaction history
I have two database tables, one in MYSQL and one in MSSQL. Both have
I have a table and two databases which have the same table, but one
I have two database tables, 1st is the TABLE_GLOBAL_PRODUCTS where all products information are
I have two database tables with the following structure: actions: action_id int(11) primary key

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.