我想从Oracle 10g PL/SQL块中的用户获取运行时输入(即与用户的交互式通信)。可能吗?
declare
x number;
begin
x=&x;
end
此代码给出错误为
不能在Oracle 10G中使用
要读取用户输入并将其存储在变量中以供以后使用,可以使用 SQL*Plus 命令ACCEPT
。
Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'
例
accept x number prompt 'Please enter something: '
然后,您可以在 PL/SQL 块中使用 x
变量,如下所示:
declare
a number;
begin
a := &x;
end;
/
使用字符串示例:
accept x char prompt 'Please enter something: '
declare
a varchar2(10);
begin
a := '&x'; -- for a substitution variable of char data type
end; -- to be treated as a character string it needs
/ -- to be enclosed with single quotation marks
你也可以试试这个它将起作用:
DECLARE
a NUMBER;
b NUMBER;
BEGIN
a := &aa; --this will take input from user
b := &bb;
DBMS_OUTPUT.PUT_LINE('a = '|| a);
DBMS_OUTPUT.PUT_LINE('b = '|| b);
END;
a number;
b number;
begin
a:= :a;-- instead of "&" use ":" here
b:= :b;
if a>b then
dbms_output.put_line('Large number is '||a);
else
dbms_output.put_line('Large number is '||b);
end if;
end;
实际上,当我尝试此操作时,它工作正常,实际上"&"给出了错误,因此您可以使用":"。
希望你得到答案:)
这是因为您使用了以下行来分配错误的值。
x=&x;
在PL/SQL中,使用以下方法完成分配。
:=
所以你的代码应该是这样的。
declare
x number;
begin
x:=&x;
-- Below line will output the number you received as an input
dbms_output.put_line(x);
end;
/
declare
a number;
b number;
begin
a:= :a;
b:= :b;
if a>b then
dbms_output.put_line('Large number is '||a);
else
dbms_output.put_line('Large number is '||b);
end if;
end;
`DECLARE
c_id customers.id%type := &c_id;
c_name customers.name%type;
c_add customers.address%type;
c_sal customers.salary%type;
a integer := &a`
这里c_id customers.id%type := &c_id; 语句输入表中已定义类型的c_id,语句为整数 := 和变量 a 中的输入整数。
SQL> DECLARE
2 a integer;
3 b integer;
4 BEGIN
5 a:=&a;
6 b:=&b;
7 dbms_output.put_line('The a value is : ' || a);
8 dbms_output.put_line('The b value is : ' || b);
9 END;
10 /
您可以使用它来获取和打印提示值:
set SERVEROUTPUT ON;
/
accept v_x number prompt 'Please enter something: '
declare
v_x NUMBER;
begin
v_x := &v_x;
dbms_output.put_line('the entered value was : ' || v_x);
end;
/
如果您尝试在 livesql 中执行此操作,请阅读此内容。据我所知,这在 livesql 上是不可能的。我真的想不出这个用例,但无论如何,你可以在 livesql 中记录反馈,团队会查看请求。
试试这个
declare
a number;
begin
a := :a;
dbms_output.put_line('Inputed Number is >> '|| a);
end;
/
OR
declare
a number;
begin
a := :x;
dbms_output.put_line('Inputed Number is >> '|| a);
end;
/
它非常简单
只需写:
首先创建名为 test 的表。
create table test (name varchar2(10),age number(5));
当你运行上面的代码时,将创建一个表。
现在我们必须插入一个名字和一个年龄。
确保通过打开寻求我们帮助输入其中值的表单来插入年龄
insert into test values('Deepak', :age);
现在运行上面的代码,你会得到"插入 1 行"输出...
/现在运行选择查询以查看输出
select * from test;
//就这样..现在我认为没有人对接受用户数据有任何疑问......