天天看點

Sql Server中清空所有資料表中的記錄

清空所有資料表中的記錄:

exec sp_msforeachtable  @Command1 ='truncate table ?'

删除所有資料表:

exec sp_msforeachtable 'delete   N''?'''