冒号“:"是什么意思?在 SQL 查询中做什么?

2021-12-06 00:00:00 sql oracle plsql bind-variables

: 在查询中代表什么?

INSERT INTO MyTable (ID) VALUES (:myId)

它如何获取所需的值?

那个标志叫什么?我想在 google 上搜索,但是 : 的名称是什么?

Also what is that sign called? I wanted to search on google, but what's the name for :?

推荐答案

这就是所谓的绑定变量 在 Oracle 中.

That's called a bind variable in Oracle.

:"的名字是什么?

冒号.

相关文章