Job Recruitment Website - Zhaopincom - What does sql="select * from recruitment information order by id desc mean?"

What does sql="select * from recruitment information order by id desc mean?"

sql="select * from recruitment information order by id desc"

Construct a query statement to query all fields of the recruitment information table and arrange them in descending order by id

< p>* means all fields, from which table the recruitment information comes from, order by id desc means sorting by the id field

desc means descending order