Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在哪里可以找到包含数据的数据库(大约 1000 万行)。我在 github 上找过这个,但我什么也找不到。
您可以使用以下命令生成 10,000,000 行:
CREATE TABLE table_name (value) AS SELECT LEVEL FROM DUAL CONNECT BY LEVEL <= 10000000;