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

The Archive Base Latest Questions

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

Table that holds content information – content : +———-+————-+——————-+——————————–+ | (int) id | (int)

  • 0

Table that holds content information – content:

+----------+-------------+-------------------+--------------------------------+
| (int) id | (int) title | (int) description | (string) tags                  |
+----------+-------------+-------------------+--------------------------------+
|        1 |          12 |                18 | super, awesome, must-see       |
+-----------------------------------------------------------------------------+
|        4 |          25 |                26 | randomness, funny-stuff, cool  |
+-----------------------------------------------------------------------------+

Table that holds translation information – translations:

+-----------+---------------------------------+----------------+
| (int) tid | (text) value                    | (varchar) code |
+-----------+---------------------------------+----------------+
|        12 | Super-awesome-mustsee           | en             |
+--------------------------------------------------------------+
|        18 | <here would be the description> | en             |
+--------------------------------------------------------------+
| <more translation data that is not necessary for this xmpl.> |
+--------------------------------------------------------------+

What I want to achieve is, to replace content.title with translations.value and same for description (more/less data for different components (content) tables) where content.title matches the translations.tid, like:

+----------+-----------------------+---------------------------------+--------------------------------+
| (int) id | (text) title          | (text) description              | (string) tags                  |
+----------+-----------------------+---------------------------------+--------------------------------+
|        1 | Super-awesome-mustsee | <here would be the description> | super, awesome, must-see       |
+-----------------------------------------------------------------------------------------------------+

So far I’ve got to only join translation data for one value… And yes, join not replace. 😐

SELECT  `content` . * ,  `translations`.value
FROM  `content` 
JOIN  `translations` ON  `translations`.tid =  `content`.title
WHERE  `translations`.code =  'en'

How do I achieve this?

Thanks in advance!

  • 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-26T18:44:24+00:00Added an answer on May 26, 2026 at 6:44 pm

    Not so complicated:

    SELECT
        `c`.`id`,
        `tt`.`value` AS title,
        `td`.`value` AS description,
        `c`.`tags`
    FROM
        `content` `c`
    LEFT JOIN 
        `translations` `tt` ON  (`tt`.`tid` = `c`.`title` AND `tt`.`code` = 'en')
    LEFT JOIN 
        `translations` `td` ON  (`td`.`tid` = `c`.`description` AND `td`.`code` = 'en')
    

    Basically you need to drop * and specify exact columns and their aliases from joined tables. Second thing is that you yo have to create double join on the same table, one to get title translation, second to get description. To ‘replace’ it in result simply use the alias for value column.

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

Sidebar

Related Questions

I have a table that holds information about cities in a game, you can
Given that I have a table that holds vehicle information and one of those
I have a table that holds only two columns - a ListID and PersonID.
I have a MySQL table that holds many entries with repeated IDs (for various
I have a table (table variable in-fact) that holds several thousand (50k approx) rows
Lets suppose that I have a Category table with a column that holds the
In the root table view controller I add a subview that holds an image:
As part of a recent project, I have created a Cell Table that holds
In summary: I have a mysql db table that holds pdf objects. When a
so I have three tables with content and one that holds row order of

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.