1234567891011121314151617181920212223242526272829303132333435363738 |
- --删除所有来电记录;
- use [db]
- go
- --1、员工来电记录表;
- truncate table [employeephonerecord]
- --2、员工拨出记录表
- truncate table [employeephonerecordout]
- --3、意向客户来电记录
- truncate table [client2phonerecord]
- --4、意向客户拨出记录
- truncate table [client2phonerecordout]
- --5、未知来电记录表
- truncate table [unknownphonerecord]
- --6、未知号码拨出记录表
- truncate table [unknownphonerecordout]
- --7、未接来电记录
- truncate table [misscallrecord]
- --8、老客户来电记录表
- truncate table [client3phonerecord]
- --9、老客户拨打记录表
- truncate table [client3phonerecordout]
- --10、订单来电记录表
- truncate table [phonerecord]
- --11、订单拨出记录表
- truncate table [phonerecordout]
- go
|