A
A
abuamr2019-06-26 11:55:07
MySQL
abuamr, 2019-06-26 11:55:07

How to select two fresh values?

There is a table, I want currency_second 1 and 3 to take a freshly added row?
5d133266546d5927102858.png
Or how to combine two queries into one, see the example below.

SELECT * FROM exchange WHERE currency_secound = 1 ORDER BY id DESC LIMIT 1

SELECT * FROM exchange WHERE currency_secound = 3 ORDER BY id DESC LIMIT 1

Answer the question

In order to leave comments, you need to log in

2 answer(s)
L
Lazy @BojackHorseman MySQL, 2019-06-26
@abuamr

for 5.7 there are no window functions, which means an old tried-and-true crutch, provided that id is a surrogate auto_increment key

SELECT *
FROM `exchange` e 
WHERE e.`currency_secound` IN (1,3) AND e.`id` = (
    SELECT MAX(e2.`id`) FROM `exchange` e2 WHERE e2.`currency_secound` = e.`currency_secound` 
)

I
irishmann, 2019-06-26
@irishmann

UNION ALL

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question