0
votes
2answers
15 views

Execute Immediate : Encountered the symbol

i am currently getting this error ORA-06550 PLS-00103 Encountered the symbol "VERSION"... Can any one help me rectify this problem? Much appreciated! declare sql_stmnt VARCHAR(200); lsparameter ...
3
votes
2answers
35 views

Multiple SELECT with NOT IN - inner Select statement returns empty and the whole SELECT returns empty

There are two table TABLE1 and TABLE2 in which there is a common field ID. I wanted to retrieve values from TABLE2 that doesnot match in TABLE1 based on ID value. select * from TABLE2 where subject = ...
-1
votes
2answers
47 views

Optimizing the sub select statements to reduce the fetching time

I have a query select * from (select a.*, /*+ FIRST_ROWS(10) */ rownum rnum from (SELECT AL.AL_UID, AL.TP_ID, AL.EVENTDATE, TP.NAME, AL.EVENT, AL.FILE_NAME, AL.NOTES, AL.XU_NAME, ...
0
votes
1answer
29 views

SQL Select statement to present data multidimentional

I'm Working on a complex SQL Statement to present data in many dimensions, --------------------------------- YEAR | MONTH | ARTICLVALUE | --------------------------------- 2013 01 ...
0
votes
3answers
64 views

Avoiding multiple calculation for the same values

Is there a way that I can improve the performance of this query by avoiding multiple calculation of some repeating values like regexp_replace(my_source_file, ...
0
votes
2answers
64 views

PL/SQL Function returns ORA-06503: PL/SQL: Function returned without value

I have to write a pl/sql code(actually a function) which returns a postcode when by taking the suburb as its parameter the code is like this: create or replace FUNCTION get_postCode(p_suburb IN ...
0
votes
1answer
82 views

Divide select in SQL does not work

Can you help me please with the divide select in SQL? I use the Oracle Apex Express Edition. I have three tables. In English (original names are in brackets): User (Uzivatel), Event (Udalost) and ...
0
votes
2answers
50 views

multiple select in one query [Teradata]

I'm trying to do multiple select from diff tables and just have a result in one column. SELECT COUNT(*) FROM tb1 union SELECT COUNT(*) FROM tb2 union SELECT COUNT(*) FROM tb3; output should be ...
1
vote
1answer
57 views

Return cursor results from anoymous block

I have the following SELECT which I want to change into an anonymous block (need to use an anonymous block as doing it within Java and do not have access to created stored functionality) in order to ...
3
votes
5answers
118 views

Interview : update table values using select statement

Interviewer asked me one question, which seems very easy, but I couldn't figure out, how to solve this Name | Gender -------------- A | F B | M C | F D | F E | M From the above ...
-2
votes
2answers
79 views

Join my select statements

My aim is to create a VIEW on properties managed with the branch's town, property details and the number of inspections carried out for these properties. I think I have made the correct SELECT ...
0
votes
1answer
42 views

SQL average by customer per month

The table 'transactions' is a list of all transactions with date, customerID, cost per unit (price) and quantity. I need a report that groups transactions into months and gives a count, the total ...
0
votes
1answer
101 views

SQLPLUS Select a Column and Count in the same SELECT statement

I have this simple library checkout table created with the following columns and values inserted into it: insert into CHECKOUT (MemID, Cat#, DateChkOut, DateDue, DateRet) values (4, 'T 430.98 ...
0
votes
0answers
48 views

Oracle view creation, turning sub select results into column based data as part of a view

I'm working on a university assignment and I have come across a problem concerning views. I have 3 tables which describe a place, it's contact details and it's contact details' types: So I have: ...
0
votes
2answers
21 views

Select fields and then join OR join and then select fields?

lets say I need to join 3 tables (T1, T2, T3) and lets say the each one of those tables has 30 columns and millions of records. Would it be faster to get the relevant fields and then join the results ...
0
votes
4answers
79 views

How to select only first rows that satisfies conditions?

I'm doing a join between two tables and adding a condition want to obtain only the first row that satisfie the join condition and the "extern" condition too. This query for example: select * from ...
-5
votes
3answers
62 views

SQL - Select only when the condition matches [closed]

I have a table like below. ID NAME 1 JOHN 2 JANE 3 JACK In a simple select statement, how can I query JOHN and JANE from the table? The conditions are: i. Result has to return JOHN and ...
-2
votes
3answers
56 views

Multiple variables for a 'in (select…)' statement?

I want to do something like this: select value1, value2, value3, value4, count(1) from mytable where value1, value2, value3, value4 in (select value1, value2, value3, value4 from mytable ...
-4
votes
3answers
44 views

why select 5 from emp does not give error

If emp table contains 14 rows and when I execute SELECT 5 FROM EMP why does it show following output instead of showing error 5 ----- 5 5 5 5 5 5 5 5 5 5 5 5 5 5 Why It just makes 5 as column alias ...
1
vote
2answers
66 views

complex sql select

I can't figure out how to make this sql select statement...Here are my tables : I opened the tables concerned by the request So basically I want to select the number of albums for each interpret. ...
0
votes
2answers
48 views

Using Oracle 9i comparing 2 years

I have a list of Rainfall data SELECT * FROM Rainfall COUNTRY YEAR AMT -------------- ---- --- Austria 2000 1.1 Belgium 2000 1.2 France 2000 1.3 Ireland ...
0
votes
3answers
59 views

Selecting Data from 2 tables based on another

I am using Oracle via the SQL+ command line, i'm trying to display data from two different tables, but i require the use of a third table to determine what to display. Below is an image of my sample 3 ...
1
vote
1answer
102 views

Oracle AFTER INSERT trigger not firing

I have been tasked with having to create a trigger after an insert. Here are the tables involved: CREATE TABLE purchase( orderid CHAR(3), unit_price NUMBER(7,2), sales_price NUMBER(7,2) DEFAULT NULL, ...
1
vote
2answers
531 views

Oracle Date datatype, transformed to 'YYYY-MM-DD HH24:MI:SS TMZ' through SQL

I have an application that uploads to an Oracle Data datatype column via: TO_TIMESTAMP_TZ('2012-10-09 1:10:21 CST','YYYY-MM-DD HH24:MI:SS TZR') I now need to pull the following format and timezone ...
0
votes
3answers
76 views

SELECT * WHERE val = MIN ( val )?

I'm fairly new to Oracle SQL, but already it's logic is beginning to confuse me. I'm trying to select all columns from a table where a particular column PRICE has the minimum value. This works: ...
0
votes
0answers
56 views

Error Invalid identifier in a select oracle database

public function getSoundsCon($numPhone) { $query=$this->_db->select() ->from('SeatPhoneRecord','SeatPhoneId','OrgPersonId','PhoneNumber') ...
0
votes
1answer
65 views

select statement error

I try the following code: $data = $this->_db->select()->from(´IncidentInformation´,array(´IncidentID´,´ContactName´))->where("ContactName=?",$numAlert); $result = ...
0
votes
2answers
64 views

Why does only one of these SQL statements work?

Why does the first SQL statement not execute, and the second one does? 1. select e.employee_id, e.last_name, e.salary as "SALARY" from employees e where employees.salary > (select avg(salary) ...
0
votes
1answer
58 views

How to conditionally select a column in an Oracle query

I want to do something like: select (if lookup = 8 then 08 else lookup) lookup , //more columns from lookup_table order by lookup Unfortunately, Oracle doesn't seem to like this syntax, and I am ...
0
votes
1answer
38 views

How do you select multiple columns from multiple tables along with total cost?

I have four tables, but for this I only need three tables, and I want to display the customerid, orderid , productid , quantity and the total cost which isn't in any table but need to calculate? so ...
3
votes
2answers
432 views

If statement in select (ORACLE)

Hi I have simply select and works great: select 'CARAT Issue Open' issue_comment, i.issue_id, i.issue_status, i.issue_title, i.ISSUE_summary ,i.issue_description, i.severity, gcrs.Area_name, ...
1
vote
3answers
83 views

Select in the IF condition statement [duplicate]

I want to put in the if condition select query: IF ( 10 in (select id from ids where ..) ) then ... /* */ END IF; How can implement that in the correct syntax ?
0
votes
1answer
52 views

Update/Merge multiple rows with select statement data

Im trying to update a single table with output of a select statement which returns two values. One is the accountid that I need to update in the table, and the other is the information I need to ...
0
votes
1answer
79 views

Oracle Sql matching date column to sysdate error

I am trying to match columns from different tables, matching them to today's date using SYSDATE. The ouput is actually populating the date column with today's date on all rows instead of just one row ...
0
votes
2answers
37 views

Retrieving Single unique record from multiple repeating record

If I have the following two tables HOTELTABLE HOTELID HOTEL NAME 1 PARK HOTEL 2 PARK PLAZA 3 HOLIDAY IN ROOM TABLE HOTELID ROOMINUMBER ROOMTYPE FLOORNUMBER ...
2
votes
2answers
200 views

Oracle SELECT - alias of one column as an input to another [duplicate]

Folks I found similar but not exact questions on this forum - pardon me if i have not done enough searching for them. This is my question..in Oracle select ( t.value*2) as inst2, (inst2 * 3) as inst3 ...
1
vote
1answer
62 views

Fixed Values for Rows in a query

Consider this SQL: SELECT c1 AS C1, 1 AS NO FROM t1 WHERE c1 = 'abc' UNION SELECT c1 AS C1, 2 AS NO FROM t2 ORDER BY NO as you may notice yourselves, the first select ...
1
vote
1answer
104 views

case, when and then on where clause in stored procedure is not working

the following stored procedure is doing product search based on search type(id, number, name) and search text(samsung galaxy or any other etc..). Let us assume search_type is name and search_text is ...
1
vote
3answers
62 views

Missing keyword from SELECT CASE

I am unsure what is wrong with this sequence of case statements. I have looked online and the syntax seems to be correct but I am getting the error missing keyword. Any help would be much ...
-1
votes
1answer
48 views

missing expression ORA-00936 SQL Oracle [closed]

So I was formatting some Unims SQL to Oracle SQL but i get the error missing Expression. But i can figure out whats wrong with the code. Below you see the query that is not working/giving the error. ...
1
vote
1answer
59 views

SQL oracle, display the output correctly

http://i.stack.imgur.com/xgqCH.jpg I stuck a bit with the output.... Question: Need to lists groups and the members belonging to each group. For each group show the unique identifier and its name ...
0
votes
3answers
84 views

Mix DISTINCT and UPPER keywords together

I have this query on Oracle 10: SELECT DISTINCT NOME FROM ICT.UTENTE WHERE UPPER(nome) LIKE UPPER('MA%'); This works and get me something like: MARIA LUISA Mariano MARIO What I really would is ...
3
votes
3answers
72 views

Using Oracle 9i converting a single text column list into a 2 column list

I have a list of countries SELECT * FROM COUNTRIES COUNTRY -------------- Austria Belarus Belgium Finland France Iceland Ireland Switzerland How would I select this as 2 columns e.g COLUMN1 ...
0
votes
1answer
70 views

ORA-00936: missing expression case statement

Received the above error when executing this select with a case statement. I tried several methods, but cannot get the syntax correct. SELECT m.md_security_id, thv.unit_qty, ...
0
votes
3answers
68 views

get parameter' s data types of a procedure

I have a list with all my procedures from my database in C#. I need to get the data type of each parameter. For example,I have a procedure called insertmd with parameters: name,age. How to make a ...
0
votes
3answers
194 views

Select distinct and non-distinct column values

I want to run a query that eliminates duplicate rows based on the values of colA and colB. However, I still want to return the values of colC and colD. Here is a simple example of what I have so far: ...
1
vote
1answer
74 views

Select records fillin a field on a block (Oracle Forms)

I have a block from a table. I want that I fill the code field with a number, and select the record with these number on their id. I want to use the when-validate-item on the code field, I don't know ...
4
votes
2answers
66 views

Is there any other logical or more robust way

I have a sql query select count(salary) from USER_DETAILS where salary>0 and salary<1000 union all select count(salary) from USER_DETAILS where salary>1000 and salary<10000 union all ...
2
votes
2answers
60 views

Join to range of integers, which is created separately for each row

From the table: | name | range | ------------------------ | 'Range1' | '456-458' | | 'Range2' | '11-13' | just trying to get this result: | name | range | value | ...
0
votes
3answers
68 views

Join the best record, if there is one, in Oracle

I have a fairly complex Oracle query, getting data from multiple tables. In one of the joins, I want the best record, if there is one. Therefore, a left outer join. There is a start date field, so ...

1 2 3 4 5 7