请教article和communication之间的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请教article和communication之间的区别相关的知识,希望对你有一定的参考价值。

article:即论著,一般性的研究论文。 short(brief)communication:短篇论著,字数少一点,一般少于2000字,格式和论著差不多,不过有些杂志的短篇论著要求不用小标题(如introduction、method、results等)。
letter:一般可分为comment性质的letter和research性质的letter,前者是对以往该杂志发表论文的评论,一般少于500字;而后者是比short communication还要短的研究型论文,一般在600字以内,有少数可以放宽到1000字以内。
不过,nature系列杂志中的research letter并不同于我们平时所讲的letter,他实质上仍然是一篇article
参考技术A 这个提问有问题。communication是article的一个类别。
同一个括号内,是同一概念的不同英文表述。
某一SCI期刊中的论文(article/paper),分为很多类别:
(Regular paper/Regular article/Full paper/Full article)
(Express paper/ Express article/Express letter/Letter/Report/Communicate)
(Review paper/Review article/Review)

请教一条MySQL代码

请教一条MySQL代码

假如有 article 和 user 两个表

■article表包含:
ArticleID 文章编号(主键)
Title 标题
UserID 作者的用户编号(外键)
Text 正文

■user表包含:
UserID 用户编号(主键)
UserName 用户名
Password 密码

`

现在,我要从 article 表搜索作者的 UserName(用户名) 为“小明”的文章,应该怎样输代码?

select * from article where ... ...

where后面要怎么输我就不知道了 … …

`

select * from article where UserID in (select UserID from user where UserName='小明') 参考技术A select a.* from article as a left join user as u on a.UserID = u.UserID where u.UserName='小明';

以上是关于请教article和communication之间的区别的主要内容,如果未能解决你的问题,请参考以下文章

characteristics of competent communicators

Communication - 处理人际冲突

请教一条MySQL代码

请教Vpp和dBm之间如何转换

MCU 51-7 I2C Communication EEPROM

进程间通信 IPC(Inter-Process Communication)