Answers for "get the previous column of a table in mysql"

SQL
0

get the previous column of a table in mysql

select * from foo where id = (select max(id) from foo where id < 4)
Posted by: Guest on August-13-2021

Code answers related to "get the previous column of a table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language