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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:58:43+00:00 2026-06-14T14:58:43+00:00

I have the following language table in MySQL to select text in different languages.

  • 0

I have the following language table in MySQL to select text in different languages.

CREATE TABLE `lang` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`group` INT(10) UNSIGNED NOT NULL,
`text` VARCHAR(255) NULL DEFAULT NULL,
`language` VARCHAR(10) NOT NULL DEFAULT 'def',
PRIMARY KEY (`id`),
UNIQUE INDEX `group_language` (`group`, `language`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
ROW_FORMAT=DEFAULT

The table contains the following data

id  group  text               language
1   1      This is English    def
2   2      Helo sir           def
3   3      how are you?       def
4   3      Wie geht es dir?   de

The group field tells me what texts belong together for each translation.
In the above example group ‘3’ has a default text (English) and a German translation.

Now I want to select all texts for German and if they don’t exist, I will want to have the fallback English text for that.

Anybody an idea how I can put that together into a SQL statement?

  • 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-14T14:58:44+00:00Added an answer on June 14, 2026 at 2:58 pm
    SELECT  DISTINCT
            COALESCE(b.ID, a.ID) ID,
            COALESCE(b.`GROUP`, a.`GROUP`) `GROUP`,
            COALESCE(b.`text`, a.`text`) `text`,
            COALESCE(b.language, a.language) language
    FROM   TableName a
           LEFT JOIN
            (
                SELECT ID, `GROUP`, `text`, language
                FROM tableName
                WHERE language = 'de'
             ) b ON a.ID <> b.ID AND a.`GROUP` = b.`GROUP`
    
    • SQLFiddle Demo
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following two tables: CREATE TABLE `table1` ( `ID` int(11) NOT NULL
I have the following MySQL table: | id | Title | Windows | Linux
I have a MySql table having the following structure: ontology_term pathway_id pathway_name I want
I have the following table with the following sample data ID Language Question SubQuestion
I have the following tables: Country, Language and Country2Language Country2Language is the linking table
i have an sql file of the following form: CREATE VIEW dbo.SomeView AS select
I have a table in my MySQL database that looks like the following banner
I have the following models in which I join the Language and Products table
Let's say I have the following query: SELECT anInteger FROM table; How do I
I have following query: $query=SELECT language_value, votes, user_id FROM labels WHERE approved=1 AND label_value=.

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.