我需要一种快速、有效的方法来随机返回单个 mysql 数据库中 4 个表的名称。这些表没有结构化的命名模式,除了它们都是小写字母和数字。
示例:my_database 包含以下表格:
(cat, dog, boat, car, cars, cars35, accorns, accerns, speaker, shell, olympics, politics, fray, ttypo, ... (thousands of tables like this) ... , road)
我需要一种有效的方法来返回一组不重叠的随机表的名称。
例子:
function_random_table(4) would return 4 table names stored to the following variables:
$random_1 = cars
$random_2 = cars35
$random_3 = shell
$random_4 = cat