哪种语言最先引入“in”第一个关键字:SQL 还是 Object Pascal?
(或者可能是另一种语言?)
我知道 SQL 和 Object Pascal 首次出现于 1986 年,但我不确定哪一个首先有 in
关键字,所以任何人都可以向我指出明确的来源会得到我的感谢和一些声誉。
是的,我搜索了答案,但我认为我的谷歌能力很弱。 :(
(Or possibly another language?)
I know both SQL and Object Pascal first appeared in 1986, but I'm not sure which one had the in
keyword first, so anyone who can point me to a definitive source will get my thanks and some reputation.
Yes I searched for the answer, but I think my Google-fu is weak. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Pascal 本身的出现早于 1986 年(Pascal 于 1970 年首次发布)。它用于集合成员资格测试。我的 Pascal 生锈了,但它是这样的:
更多信息可以在 上找到维基百科帕斯卡页面。
另外,这里引用了 Wirth 的 PASCAL 用户手册和报告,其中提到
in
作为关系运算符之一。Pascal itself had
in
much earlier than 1986 (Pascal was first published in 1970). It was used for set membership testing. My Pascal is rusty, but it went something like this:Further information can be found on the Wikipedia Pascal page.
Also, here is a citation from Wirth's PASCAL User Manual and Report that mentions
in
as one of the relational operators.Oracle V2 作为商业关系数据库于 1979 年由 Relational Software, Inc 发布(在 1986 年被 ANSI 标准化之前使用 SQL);其次是IBM的System R。SQL-86标准当然包括IN运算符,但无法确认它是否在1979年至1986年间出现。
Oracle V2 was released in 1979 as a commercial relational database by Relational Software, Inc (using SQL before its standardisation by ANSI in 1986); followed by IBM's System R. The SQL-86 standard certainly included the IN operator, but can't confirm whether or not it appeared between 1979 and 1986.