英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

truncate    音标拼音: [tr'ʌŋk,et]
vt. 切去头端,缩短,截棱成平面
a. 切去了头的,缩短了的

切去头端,缩短,截棱成平面切去了头的,缩短了的

truncate
截断

truncate
截断

truncate
adj 1: terminating abruptly by having or as if having an end or
point cut off; "a truncate leaf"; "truncated volcanic
mountains"; "a truncated pyramid" [synonym: {truncate},
{truncated}]
v 1: replace a corner by a plane
2: approximate by ignoring all terms beyond a chosen one;
"truncate a series"
3: make shorter as if by cutting off; "truncate a word";
"Erosion has truncated the ridges of the mountains" [synonym:
{truncate}, {cut short}]

Truncate \Trun"cate\, a. [L. truncatus, p. p. ]
Appearing as if cut off at the tip; as, a truncate leaf or
feather.
[1913 Webster]


Truncate \Trun"cate\, v. t. [imp. & p. p. {Truncated}; p. pr. &
vb. n. {Truncating}.] [L. truncatus, p. p. of truncare to cut
off, mutilate, fr. truncus maimed, mutilated, cut short. See
{Trunk}.]
To cut off; to lop; to maim.
[1913 Webster]

85 Moby Thesaurus words for "truncate":
abbreviate, abridge, abscind, abstract, amputate, annihilate, ban,
bar, blemish, bob, boil down, capsulize, clip, compress, condense,
contract, crop, cull, curtail, cut, cut away, cut back, cut down,
cut off, cut off short, cut out, cut short, deface, deform,
disfigure, disproportion, dock, elide, eliminate, enucleate,
epitomize, eradicate, except, excise, exclude, extinguish,
extirpate, foreshorten, isolate, knock off, lop, mar, misshape,
mow, mutilate, nip, pare, peel, pick out, poll, pollard, prune,
reap, recap, recapitulate, reduce, retrench, root out, rule out,
set apart, set aside, shave, shear, shorten, snub, stamp out,
strike off, strip, strip off, stunt, sum up, summarize, synopsize,
take in, take off, take out, telescope, top, trim, wipe out


请选择你想看的字典辞典:
单词字典翻译
Truncate查看 Truncate 在百度字典中的解释百度英翻中〔查看〕
Truncate查看 Truncate 在Google字典中的解释Google英翻中〔查看〕
Truncate查看 Truncate 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • MySQL删除表数据、清空表命令(truncate、drop、delete 区别)-腾讯云开发者社区-腾讯云
    MySQL清空表数据有三种方法:truncate、drop和delete。 truncate删除所有数据但保留表结构,速度快且不可回滚;drop删除整个表及数据,速度最快且不可回滚;delete可删除部分或全部数据,保留表结构,可回滚。
  • 面试官灵魂一问: MySQL 的 delete、truncate、drop 有什么区别?
    对于MyISAM,truncate会重置auto_increment(自增序列)的值为1。 而delete后表仍然保持auto_increment。 对于InnoDB,truncate会重置auto_increment的值为1。 delete后表仍然保持auto_increment。 但是在做delete整个表之后重启MySQL的话,则重启后的auto_increment会被置为1。
  • SQL 清空表 (TRUNCATE TABLE 语句) - 菜鸟教程
    TRUNCATE TABLE与DELETE相比,它更快并且使用的系统资源更少,因为DELETE扫描表以生成受影响的行数,然后逐行删除行,并为每个删除的行在数据库日志中记录一个条目,而TRUNCATE TABLE只删除所有行而不提供任何其他信息。
  • TRUNCATE中文 (简体)翻译:剑桥词典 - Cambridge Dictionary
    In doing this, we truncate the fast transients of the flexible dynamics and keep only that of the rigid dynamics
  • MySQL 中 DELETE、DROP 和 TRUNCATE 的区别是什么? - CSDN博客
    文章浏览阅读419次,点赞10次,收藏6次。MySQL中DELETE、TRUNCATE和DROP的区别:DELETE是DML操作,支持条件删除和回滚,但速度慢;TRUNCATE是DDL操作,快速清空表数据并重置自增ID,不可回滚;DROP直接删除整张表。DELETE适合部分删除,TRUNCATE用于清空表,DROP用于彻底移除表。注意TRUNCATE和DROP不可回滚,执行
  • truncate - 搜索 词典
    1 Arrange these seven queens on a Chess Board in a way that each queen should never truncate the path of any other queen 用 一种 方式 把 这 七 个 皇后 排列 在 国际象棋 盘上, 保证 她们 永远不会 截断 别的 皇后 的 行动 路径。
  • SQL DROP TRUNCATE DELETE 区别
    truncate table 命令将快速删除数据表中的所有记录,但保留数据表结构。 这种快速删除与 delete from 数据表的删除全部数据表记录不一样, delete 命令删除的数据将存储在系统回滚段中,需要的时候,数据可以回滚恢复,而 truncate 命令删除的数据是不可以恢复的。
  • SQL中的truncate table命令 - 极客教程
    SQL中的truncate table命令 1 简介 在SQL中,truncate table是一条常用的命令,用于快速删除表中的所有数据。 与delete命令不同,truncate table操作不仅可以删除表中的数据,还可以将相应的存储空间释放出来,从而提高性能。
  • MySQL TRUNCATE:清空表记录 - C语言中文网
    它们都用来清空表中的数据。 DELETE 是逐行一条一条删除记录的;TRUNCATE 则是直接删除原来的表,再重新创建一个一模一样的新表,而不是逐行删除表中的数据,执行数据比 DELETE 快。 因此需要删除表中全部的数据行时,尽量使用 TRUNCATE 语句, 可以缩短执行时间。
  • MySQL 中 DELETE、DROP 和 TRUNCATE 的区别 - 博客园
    3 TRUNCATE 作用: TRUNCATE 用于删除表中的所有数据,但保留表结构。 通常比 DELETE 更快,因为它不会逐行删除数据,而是通过删除数据页来快速清空数据。 事务支持: TRUNCATE 也是不可回滚的,执行后无法恢复。 触发器: TRUNCATE 不会触发 DELETE 触发器。





中文字典-英文字典  2005-2009