Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7788637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:03:43+00:00 2026-06-01T21:03:43+00:00

The question is similar to using LIKE in SQL *PLUS , where a select

  • 0

The question is similar to using LIKE in SQL *PLUS, where a select statement contains a LIKE clause as follows:

select * from sometable where somecolumn LIKE 'something%';

How could one use the same within a cursor? I tried using the following:

 cursor c is select * from sometable where somecolumn like 'something%'; 

same as above

EDIT: I need to get something as a parameter, meaning, the select statement is executed within a stored procedure.

EDIT 2:

create procedure proc1 (search VARCHAR) is

cursor c is select student_name from students where student_name like 'search%';

–I know using ‘search%’ retrieves student names containing ‘the key search’, but is there any other way to use such a variable.

do something;

end;

In short, I need to select student names containing a value that is passed as a parameter; this may not be the whole name, and may suffice enough to be used within a like clause.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T21:03:44+00:00Added an answer on June 1, 2026 at 9:03 pm

    As per my understanding to your issue, you are using variable search within quotes. Put your variable outside the quotes, e.g.:

     create or replace procedure PROC1(search VARCHAR2) 
     IS
      cursor test_cur(search IN VARCHAR2)
       IS
        SELECT student_name 
        FROM student
        WHERE student_name LIKE search||'%'; --you're putting you variable within quotes
    
     v_temp_var student.student_name%TYPE;
    
    BEGIN
    
     OPEN test_cur(search);
      LOOP
       FETCH test_cur INTO v_temp_var;
        EXIT WHEN test_cur%NOTFOUND;
    
        DBMS_OUTPUT.PUT_LINE(v_temp_var);  
      END LOOP;
    
     CLOSE test_cur;
    
    END test;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Similar to my question about returning from inside a using statement (whose answer was
My question is similar to sql statement to delete records older than XXX as
Similar to This Question using linq to SQL , but I don't want to
There is a similar question on SO which suggests using NumberFormat which is what
I saw this similar question here but can't figure out how to use Contains
When using a DeleteAllOnSubmit statement like the following (I'm omitting DataContext because I'm using
I'd like to know if it's possible to execute more than one SQL statement
Sorry I know similar question have been asked many times before but like most
This question is similar to my last question . Except this time I'm using
I found a question that was very similar to this one, but using features

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.