C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
SQL SELECT LASTThe last() function is used to return the last value of the specified column. Syntax for SQL SELECT LAST() FUNCTION: SELECT LAST (column_name) FROM table_name; You should note that the last() function is only supported in MS Access. But there are ways to get the last record in MySql, SQL Server, Oracle etc. databases. My SQL syntax:SELECT column_name FROM table_name ORDER BY column_name DESC LIMIT 1; SELECT TOP 1 column_name FROM table_name ORDER BY column_name DESC; SELECT column_name FROM table_name ORDER BY column_name DESC WHERE ROWNUM <=1; Let us take the example of CUSTOMERS to examine SQL SELECT LAST command: Table CUSTOMERS
If you want to retrieve the last value of the "customer_name" column from the "customers" table, you need to write following query: SELECT LAST (CUSTOMER_NAME) AS LAST_CUSTOMER FROM CUSTOMERS; After that query, you will find the result: SHIKHA SRIVASTAV
Next TopicSQL Select Random
|