mysql unique number generation

前端 未结 9 946
南笙
南笙 2020-12-05 03:17

I want to generate a unique random integer (from 10000 to 99999) identity just by clean mySQL; any ideas?

I don\'t want to generate this number in php by cycling (ge

9条回答
  •  -上瘾入骨i
    2020-12-05 03:54

    While it seems somewhat awkward, this is what can be done to achieve the goal:

    SELECT FLOOR(10000 + RAND() * 89999) AS random_number
    FROM table
    WHERE random_number NOT IN (SELECT unique_id FROM table)
    LIMIT 1
    

    Simply put, it generates N random numbers, where N is the count of table rows, filters out those already present in the table, and limits the remaining set to one.

    It could be somewhat slow on large tables. To speed things up, you could create a view from these unique ids, and use it instead of nested select statement.

    EDIT: removed quotes

提交回复
热议问题