“SQL Wybierz ostatni identyfikator” Kod odpowiedzi

SQL Wybierz ostatni identyfikator

#Where the the column name is "ID" and table name is "tablename" and ID naming is increasing numerical value.
SELECT * 
FROM tablename
WHERE ID = (
    SELECT MAX(ID) 
  	FROM Table)
Kwams

SQL otrzyma ostatni identyfikator

SELECT MAX(id) FROM <tablename>
Old-fashioned Oystercatcher

SQL Wybierz ostatni identyfikator

SELECT
  (SELECT * FROM tableName ORDER BY col1 LIMIT 1)        AS first,
  (SELECT * FROM tableName ORDER BY col1 DESC LIMIT 1)   AS last
;
VasteMonde

Odpowiedzi podobne do “SQL Wybierz ostatni identyfikator”

Pytania podobne do “SQL Wybierz ostatni identyfikator”

Więcej pokrewnych odpowiedzi na “SQL Wybierz ostatni identyfikator” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu