In SQL in Postgres, how do I create and insert n
number of rows of test data with random strings length x
?
e.g.,
CREATE TABLE my_table (my_text_column TEXT);
-- now insert n rows of test data into my_table, with random
-- strings of length x for my_text_column