Are there any functions in MySQL like dense_rank() and row_number() like those provided by Oracle and other DBMS?
dense_rank()
row_number()
I want to generate an id
MySQL version 8 now has ROW_NUMBER. Documentation
EXAMPLE:
SELECT ROW_NUMBER() OVER (ORDER BY s.Id) AS 'row_num', s.product, s.title FROM supplies AS S