A
A
Alex Setup2018-01-26 12:07:34
SQL
Alex Setup, 2018-01-26 12:07:34

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

2 answer(s)
K
Konstantin Tsvetkov, 2019-11-11
@tosha4encko

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

P
Profi_GMan, 2018-01-26
@AlexSetup

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 question

Ask a Question

731 491 924 answers to any question