2020
12-30
12-30
postgreSQL数据库 实现向表中快速插入1000000条数据
不用创建函数,直接向表中快速插入1000000条数据createtabletbl_test(idint,infotext,c_timetimestamp);insertintotbl_testselectgenerate_series(1,100000),md5(random()::text),clock_timestamp();selectcount(id)fromtbl_test;--查看个数据条数补充:postgreSQL批量插入10000条数据,生成随机字母随机数啥也不说了,看代码吧~--随机字母selectchr(int4(random()*26)+65);--随机4位字母selectrepeat(chr(i...
继续阅读 >