我想指望員工 SQL> select count(ename) AS number of people, from emp;
select count(ename) AS number of people, from emp
*
ERROR at line 1:
ORA-00923: FROM keyword not found where expected
SQL>
我想從兩個不同的表中獲取數據,並將其放入聲明中,但不工作。這就是我期望得到的完整聲明:我希望查詢顯示dname,loc,人數。我遇到了子查詢的問題。 SQL> select dname, loc from dept where ename in (count(ename) AS Number_of_People from emp);
select dname, loc from dept whe
如果我運行下面的語句作爲SQL腳本 -- create the pivot_sales_data table
CREATE TABLE pivot_sales_data AS
SELECT *
FROM (
SELECT month, prd_type_id, amount
FROM all_sales
WHERE year = 2003
我做錯了什麼? SQL> select ename, job, oder by (ascending order)hiredate from emp where hiredate between '20-FEB-81' AND '01-MAY-81';
select ename, job, oder by (ascending order)hiredate from emp where hire
我有一些查詢來找出架構中某些對象的ddl。 我得到的結果列在查詢中間被截斷。 如何增加欄的寬度? 我試着用 SET SERVEROUTPUT ON SIZE 1000000;
SET LINESIZE 50000;
set pagesize 50000;
set long 50000;
但是,仍然得到同樣的結果。 確實有幫助。 感謝
我有一個腳本應該連接到oracle並運行查詢。 當我運行腳本時,出現以下錯誤。 ORACLE_HOME=/app/oracle/product/10.2.0
export ORACLE_HOME
atm_test.sh: ORACLE_HOME^M: is not an identifier
我的腳本看起來像這樣。 ORACLE_HOME=/app/oracle/product/10.2.
我想從表中得到工作和deptno 30,但我得到一個錯誤。任何想法我失蹤? SQL> select deptno from emp where deptno 30;
select deptno from emp where deptno 30
*
ERROR at line 1:
ORA-00920: invalid relational operator
表 S