SQL - Printable Version +- TicTacTech.net Forums (https://tictactech.net/forum) +-- Forum: Technology (https://tictactech.net/forum/forumdisplay.php?fid=4) +--- Forum: Ask ChatGPT (https://tictactech.net/forum/forumdisplay.php?fid=9) +--- Thread: SQL (/showthread.php?tid=22) |
SQL - andrew - 10-31-2023 Write me a SQL query returns only the last line of the street field in the address table. SQL - rpgking - 10-31-2023 SELECT street FROM address ORDER BY street DESC LIMIT 1; |