SQL标准中有TRUNCATETABLE语句,用来清空表的所有内容。但SQLite不支持这个语句。对于大多数DBMS来说,用DELETE不如用TRUNCATE速度快,因为TRUNCATE不用访问整个表,不用记录数据的变动。通常在清空表的时候,还需要把自增列
create or replace procedure 存储名称asbeginexecute immediate 'truncate table 表名';execute immediate 'truncate table 表名';commit;end;2.
查看MySQL数据库表进入MySQL Command line client下查看当前使用的数据库:. mysql>show databases;//可以查看有哪些数据库,返回数据库名。show columns from 表名;或者describe
select @trun_name=@trun_name + 'truncate table ' + [name] + ' ' from sysobjects where xtype='U' and status > 0. exec 该方法适合表不
安科网(Ancii),中国第一极客网
Copyright © 2013 - 2019 Ancii.com
京ICP备18063983号-5 京公网安备11010802014868号