Answer the question
In order to leave comments, you need to log in
Is there an equivalent of help() from Python3 in C++?
There is a command in Python Is help()
there an analogue of such a command in C++?
Answer the question
In order to leave comments, you need to log in
SELECT reg_num, MAX( date_creation ) FROM YourTable GROUP BY reg_num
get the id of this object?
SELECT id, YourTable.reg_num, YourTable.date_creation
FROM YourTable INNER JOIN
( SELECT reg_num, MAX( date_creation ) AS MaxDate FROM YourTable GROUP BY reg_num ) AS M
ON M.reg_num = YourTable.reg_num AND M.MaxDate = YourTable.date_creation
Unfortunately not, but why? You can’t describe everything there anyway ... Similar things can be found on sites, for example, ru.cppreference.com/w or en.cppreference.com (it is often more correct)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question