oracl 和db2 常用语法比较: 1、取前N条记录 Oracle:Select * from TableName where rownum <= N; DB2:Select * from TableName fetch first N rows only; 2、取得系统日期 Oracle:Select sysdate from dual; DB2:Select current timestamp from sysibm.sysdummy1; 3、空值转换 Oracle:Select
MySQL数据库中,如果我们想清空数据表(删除数据表中所有内容)的话,可以通过下面两个语句来实现:
truncate table table_n;
delete from table_n;
实例
我们先通过实例看下通过这两种方式清空数据库的过程和结果
#delete演示
mysql> create table testforde(
-> number int not null auto_increment,
-> name varchar(20) not null,