ndb_truncate.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:
MySQL数据库
开发平台:
Visual C++
- DROP TABLE IF EXISTS t2;
- CREATE TABLE t2 (
- a bigint unsigned NOT NULL PRIMARY KEY,
- b int unsigned not null,
- c int unsigned
- ) engine=ndbcluster;
- select count(*) from t2;
- count(*)
- 5000
- truncate table t2;
- select count(*) from t2;
- count(*)
- 0
- drop table t2;