distinct distinctive distinguish 有什么区别
1、distinct 是形容词,它的意思是明显的,清楚的; 卓越的,不寻常的; 有区别的; 确切的。
distinctive也是形容词,但通常指什么东西很有特色的、与众不同的、是独特的。
而distinguish 却是会作为动词在使用,它的意思是辨别,分清; 辨别出,识别; 引人注目,有别于; 使杰出,使著名。
2、distinct作为有区别的;不同的;个别的意思时,常和from搭配“…be distinct from…”
-
If something is distinct from something else of the same type, it is different or separate from it.
如果某物与同一类型的其他东西不同,它就与它不同或有别与它。
-
Engineering and technology are disciplines distinct from one another and from science…
工程和技术是相互区别的学科,也不同于科学。
3、distinctive常常作“独特的”解释,即区别于别的事物,而拥有自己独特的风格。
-
They are part of what makes the BBC distinctive.
它们是BBC与众不同之处的一部分。
-
Their products are sufficiently well characterized to be distinctive.
他们的产品很有特色。
4、distinguish 常作为动词使用。
-
We could distinguish the path only by the flashes of lightning.
我们只能靠闪电的光才能看得见路。
-
The twins are so much alike that you could scarcely distinguish them.
这一对孪生子长得一模一样,你很难识别他们。
扩展资料
1、【用法】:
-
Could he distinguish right from wrong? 他能分辨是非吗?
作“分辨、区分”时使用
-
Over the next few years he distinguished himself as a leading constitutional scholar.
在接下来的几年里,他作为一名宪法研究领域最杰出的学者而声名远扬。
作“使杰出、使著名”时使用
2、英语词根词缀记忆 … distinguish 区别;辩出
distinguished 著名的,卓越的(区别→与众不同→著名的).
-
distinguish [from]区别,辨别;辨认出;使杰出
dis分开+sting刺,刺激+uish=ish表动词→把刺拿开→区别
-
extinguish 熄灭;消灭;结束;压制;使黯然失色;偿清
ex出+sting引申为火焰+uish→灭火
参考资料:百度百科—distinguish
distinguish和distinct的区别
distinguish和distinct的区别为:指代不同、用法不同、侧重点不同
一、指代不同
1、distinguish:区分,辨别。
2、distinct:清晰的,清楚的。
二、用法不同
1、distinguish:distinguish的基本意思是“辨认,识别,区分”,通过听力、视力等感官辨认人或物,这些人或物可以是相像的东西,也可以是不相像但紧密相关容易引起误解的东西,引申可表示“与众不同”。
2、distinct:distinct(ly)的意思是“独立的(地)”,“清楚的(地)”。distinctive(ly)的意思是“足以表示特殊的(地)”或“有特色的(地)”。
三、侧重点不同
1、distinguish:是动词词性。
2、distinct:是形容词词性。
distinct的所有用法及含义 及变形 如distinctive
刚刚看到您的补充问题:
distinct: adj. (from)独特的,不同的,明显的,清楚的
词形变化:
副词:distinctly 名词:distinctness
例句与用法:
1. There is a distinct posibility that she’ll be your teacher next term.
她下学期当你们的老师的可能性非常大。
2. Those two ideas are quite distinct from each other.
这两种观点截然不同。
3. Mozart’s style is quite distinct from Haydn’s.
莫扎特在风格上与海顿截然不同.
4. Astronomy, as distinct from astrology, is an exact science.
天文学是一门严谨的科学, 与占星术完全不同.
5. Although they look similar, these plants are actually quite distinct.
尽管这些植物看起来很相似, 实际上却属於完全不同的种类.
6. I had the distinct impression that I was being watched.
我很明显地感觉到有人在监视我.
7. The footprints are quite distinct; they must be fresh.
足迹清晰易辨, 一定是不久前留下来的.
8. There was a distinct sense of embarrassment in the air.
周围的气氛中有一种明显的局促不安的感觉.
distinguish: v. 区别,辨别,表现突出
词形变化:
形容词:distinguishable 副词:distinguishably 动词过去式:distinguished 过去分词:distinguished 现在分词:distinguishing 第三人称单数:distinguishes
例句与用法:
1. He distinguished himself by his courage.
他因英勇而扬名。
2. The twins were so much alike that it was impossible to distinguish one from the other.
这对孪生子像得使人无法分辨。
3. She distinguished herself by her coolness and bravery.
她因头脑冷静、敢作敢为而为人称道。
4. The twins are so alike that no one can distinguish one from the other.
这对孪生儿长得很像, 无人能分辨出谁是谁.
5. People who cannot distinguish between colours are said to be colour-blind.
不能辨别颜色的人称为色盲.
6. Speech distinguishes human beings from the animals.
使用言语是人类有别於动物的特徵.
7. The male is distinguished (from the female) by its red beak.
由喙部为红色这一特点可以辨认出其为雄性(以区别於雌性).
8. Speeches distinguish human beings from animals.
人类和动物的区别在于人会说话。
数据库中 DISTINCT 的作用是什么
SQL数据库中, DISTINCT表示去掉重复的行,作用是针对包含重复值的数据表,用于返回唯一不同的值。语法是SELECT DISTINCT 列名称 FROM 表名称。如果指定了 SELECT DISTINCT,那么 ORDER BY 子句中的项就必须出现在选择列表中,否则会出现错误。
对于 DISTINCT关键字,如果后面有多个字段,则代表着是多条件去重,只有当这几个条件都相同时才算是重复记录。
扩展资料:
用法说明如下:
SELECT DISTINCT 列名称 FROM 表名称使用 DISTINCT 关键词
如果要从 “Company“ 列中选取所有的值,需要使用 SELECT 语句:
SELECT Company FROM Orders“Orders“表:
Company OrderNumber
IBM 3532
W3School 2356
Apple 4698
W3School 6953
结果:
Company
IBM
W3School
Apple
W3School
尽管DISTINCT用于过滤重复记录。 但是通常在使用时,仅使用其来返回唯一记录的数量,而不是使用其来返回非重复记录的所有值。 原因是DISTINCT只能通过双循环查询来解决,这无疑将直接影响具有大量数据的站点的效率。
distinct 关键词的用法可以用来修饰多个字段
distinct的只显示一次重复出更的值。 不过这个值出现多少次只显示一次。 select distinct 字段名1,字段名2 from 表格 order by 字段名1 distinct 字段名1 意思是只显示一次字段名1显示的是第一次出现的。 最好和order by 结合使用。可以提高效率。
SQL中distinct的用法是什么
在表中,可能会包含重复值。这并不成问题,不过,有时您也许希望仅仅列出不同(distinct)的值。关键词 distinct用于返回唯一不同的值。
表A:
表B:
1.作用于单列
select distinct name from A
执行后结果如下:
2.作用于多列
示例2.1
select distinct name, id from A
执行后结果如下:
实际上是根据name和id两个字段来去重的,这种方式Access和SQL Server同时支持。
示例2.2
select distinct xing, ming from B
返回如下结果:
返回的结果为两行,这说明distinct并非是对xing和ming两列“字符串拼接”后再去重的,而是分别作用于了xing和ming列。
3.COUNT统计
select count(distinct name) from A; –表中name去重后的数目, SQL Server支持,而Access不支持
count是不能统计多个字段的,下面的SQL在SQL Server和Access中都无法运行。
select count(distinct name, id) from A;
若想使用,请使用嵌套查询,如下:
select count(*) from (select distinct xing, name from B) AS M;
4.distinct必须放在开头
select id, distinct name from A; –会提示错误,因为distinct必须放在开头
5.其他
distinct语句中select显示的字段只能是distinct指定的字段,其他字段是不可能出现的。例如,假如表A有“备注”列,如果想获取distinc name,以及对应的“备注”字段,想直接通过distinct是不可能实现的。但可以通过其他方法实现关于SQL Server将一列的多行内容拼接成一行的问题讨论
distinct的使用
distinct的只显示一次重复出更的值。
不过这个值出现多少次只显示一次。
select distinct 字段名1,字段名2 from 表格 order by 字段名1
distinct 字段名1 意思是只显示一次字段名1显示的是第一次出现的。
最好和order by 结合使用。可以提高效率。
distinct用法 SQL用法
对整个select 来说的话.前面加一个distinct表示把重复的记录去掉的意思
id name
1 张三
2 王三
3 李四
4 张三
2 王三
select distinct id,name from t1
id name
1 张三
2 王三
3 李四
4 张三
select distinct name from t1
name
张三
王三
李四
DISTINCT 的用法
distinct的只显示一次重复出更的值。
不过这个值出现多少次只显示一次。
select distinct 字段名1,字段名2 from 表格 order by 字段名1
distinct 字段名1 意思是只显示一次字段名1显示的是第一次出现的。
最好和order by 结合使用。可以提高效率。
HQL语句 distinct 的用法是什么
1、distinct这个关键字用来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值。其原因是distinct只有用二重循环查询来解决,而这样对于一个数据量非常大的站来说,无疑是会直接影响到效率的。
2、distinct的只显示一次重复出更的值。 不过这个值出现多少次只显示一次。 select distinct 字段名1,字段名2 from 表格 order by 字段名1 distinct 字段名1 意思是只显示一次字段名1显示的是第一次出现的。 最好和order by 结合使用。
3、表中包含有若干列数据,现在想用某一列进行distinct操作,但是还想在结果中输出所有的列,只要对该列distinct就可以,比如是列test1,表是table,select * from table where test1 in(select distinct(test1) from table)。