哪种语言最先引入“in”第一个关键字:SQL 还是 Object Pascal?

发布于 2024-09-26 06:36:40 字数 163 浏览 1 评论 0原文

(或者可能是另一种语言?)

我知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬色的秋千 2024-10-03 06:36:40

Pascal 本身的出现早于 1986 年(Pascal 于 1970 年首次发布)。它用于集合成员资格测试。我的 Pascal 生锈了,但它是这样的:

type mysettype = set of 1..10;
var myset: mysettype;

if 5 in myset then begin
    writeln("found it!");
end;

更多信息可以在 上找到维基百科帕斯卡页面

另外,这里引用了 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:

type mysettype = set of 1..10;
var myset: mysettype;

if 5 in myset then begin
    writeln("found it!");
end;

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.

断桥再见 2024-10-03 06:36:40

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文