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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T00:46:45+00:00 2026-06-18T00:46:45+00:00

i have 2 select statements, 1 for getting the latest failed status and one

  • 0

i have 2 select statements, 1 for getting the latest failed status and one for getting the latest missed status. in the 3rd i need to have a statement if the latest status is with missed or failed but it seems to have merged the data? im using LIKE because the missed and failed may vary slightly

mysql> select max(scheduled_start),node_name,schedule_name,status from `events_server` WHERE status LIKE '%Failed%'and node_name='name';
+----------------------+----------------+---------------+-----------+
| max(scheduled_start) | node_name      | schedule_name | status    |
+----------------------+----------------+---------------+-----------+
| 2013-01-30 15:00:00  | name           | name_1500     | Failed  1 |
+----------------------+----------------+---------------+-----------+
1 row in set (0.01 sec)

mysql> select max(scheduled_start),node_name,schedule_name,status from `events_server` WHERE status LIKE '%Missed%'and node_name='name';
+----------------------+----------------+---------------+--------+
| max(scheduled_start) | node_name      | schedule_name | status |
+----------------------+----------------+---------------+--------+
| 2013-01-23 08:00:00  | name           | NAME_0800     | Missed |
+----------------------+----------------+---------------+--------+
1 row in set (0.01 sec)

mysql> select max(scheduled_start),node_name,schedule_name,status from `events_server` WHERE (status LIKE '%Failed%' OR status LIKE '%Missed%') and node_na
me='name';
+----------------------+----------------+---------------+--------+
| max(scheduled_start) | node_name      | schedule_name | status |
+----------------------+----------------+---------------+--------+
| 2013-01-30 15:00:00  | name           | NAME_0800     | Missed |
+----------------------+----------------+---------------+--------+
1 row in set (0.01 sec)
  • 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-18T00:46:46+00:00Added an answer on June 18, 2026 at 12:46 am

    Have you tried something similar to this which will pivot the data and return a separate column for each status. This will give you the max(scheduled_start) for both the Failed and Missed statuses. But you also need to add a GROUP BY to get the result:

    select 
        max(case when status LIKE '%Failed%' then scheduled_start end) Failed,
        max(case when status LIKE '%Missed%' then scheduled_start end) Missed,
        node_name,
        schedule_name
    from `events_server`
    where node_name='name'
     AND (status LIKE '%Missed%' OR status LIKE '%Failed%')
    group by node_name, schedule_name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I basically have 7 select statements that I need to have the results output
I have a SQL Select statement where I need to return certain values depending
I have two foreach statements. The variable from one one is somehow getting into
Why am i getting a #1222 - The used SELECT statements have a different
Why am I getting ERROR 1222 (21000): The used SELECT statements have a different
I have a stored procedure with multiple insert/select statements. Let's say I'm using the
I am trying to learn MySQL select statements a little better and I have
I am trying to solve this problem. I have a series of SELECT statements
I have these 2 statements: $pow= mysql_query(select options.label from options where userid='1'); and: $sql=(SELECT
I have a select statement running which pulls data into $row. $result = mysql_query(Select

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.