The MYSQL rand() function is notoriously slow in select statements, is this true for insert statements as well? I would like to insert a new row with random number in the following way:
insert into new_table (field1, field2, randomField) values ('Hello', 'Ola', rand());
Will the rand() function become slow as the table gets larger and larger?