SQL>exec select 'your name' into :prompt from dualSQL>select :prompt from dual;
------------------------------------
------------------------------------4)
我是JavaScript的新手,所以请不要攻击我的“无知”问题。 authors[1]=parseFloat(prompt("Who wrote Huckleberry Finn?"));
authors[2]=parseFloat(prompt("Who wrote The Return of the Native?"))
我正在使用Oracle示例:2) 1,2,3,5,11第一个例子是我遇到的问题。我正在编写一个select查询,如: SELECT * from Table where Value IN (1,2,3,6-8,9-11)SELECT * from Table where Value IN (1,2,3,6,7,8,9,10,11)将解决我的问题