這兩天發現了乙個東西很好玩:
如何在你的資料庫中插入一百萬條記錄(要求三分鐘之內)hoo~~hoo~~~
1 首先
create table news
(newsid int primary key auto_increment,
newstitle varchar(100),
newscontent varchar(200),
newsdate date default now(),
newscount int
)2 隨便插入一些資料:
insert into(newstitle,newscontent,newscount)values('aa','bb',100)
3 然後執行下面語句★★★★★:
insert into news(newstitle,newscontent,newscount)
select newstitle,newscontent,newscount from news
以上是mysql版 如果用在mssql版本也一樣的 就此打住 。。。。讀書咯。。。。
千萬不要貪心啊。。。插入太多卡死機子了。。。。明天還要數模。。。。鬱悶中。。。。。
如何利用jdbc快速插入百萬條資料
當須要向資料庫插入百萬條資料時,利用hibernate,mybatis等持久層框架時耗時較久,此時使用jdbc插入效率會更高。此種場景特別適用於讀取檔案匯入到資料庫。可以利用批處理來加快jdbc的插入效率。string sql insert into person id,name values co...
如何快速在資料庫中插入資料
工作中很少用mysql插入資料,今天正好遇到,學習下 在toad mysql工具裡面,除了像execl 一樣手動插入資料之外,最好用insert語句插入資料,怎麼快速生成資料呢?1.右擊需要插入資料表,這裡是cd financing income,彈出generate sql 選擇to editor...
如何快速在資料庫中插入資料
工作中很少用mysql插入資料,今天正好遇到,學習下 在toad mysql工具裡面,除了像execl 一樣手動插入資料之外,最好用insert語句插入資料,怎麼快速生成資料呢?1.右擊需要插入資料表,這裡是cd financing income,彈出generate sql 選擇to editor...