answersLogoWhite

0


Best Answer

'-' is used to continue a ststement in SQLPlus

For SQL statements and PL/SQL blocks there is no need for continuation character:

SELECT

ename

FROM

emp

;

set serveroutput on

BEGIN

dbms_output.put_line ('Hello, world');

END;

/

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which character is used to continue a statement in SQLPlus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Can a continue statement be used in a switch statement?

If you have a loop in your switch statement or around your switch statement, you can use the continue statement in that. You cannot use a continue statement outside of a loop (do, for, or while).


Where is the continue statement NOT usually used?

The continue statement is not actually used when it is the last statement of the body of the loop. Plus: outside any loop it is rarely or never used.


What are the differences between Break Continue and Exit?

break - The break statement is used to jump out of loop. After the break statement control passes to the immediate statement after the loop.continue - Using continue we can go to the next iteration in loop.exit - it is used to exit the execution of program.note: break and continue are statements, exit is function.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).


How do you use a C-continue statement in a block- without any looping or conditional statements?

In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.

Related questions

Can a continue statement be used in a switch statement?

If you have a loop in your switch statement or around your switch statement, you can use the continue statement in that. You cannot use a continue statement outside of a loop (do, for, or while).


Where is the continue statement NOT usually used?

The continue statement is not actually used when it is the last statement of the body of the loop. Plus: outside any loop it is rarely or never used.


What statement is used to skip a part of loop?

The continue statement is used to skip the balance of a loop.


What is the use of continue in c?

Continue statement is used to take the control to the begining of the loop in which it is used.


How do you use continue statement in c language?

In C continue stements are used inside the loops like for .while,do while .its a statement used in c language wher it tell the compiler to skip the following statement(statement or part of progm following continue)&continue with next iteration.it shud me noted that its diff from break statement wher the control of prog goes out of the particular loop.in case of for ,while ,or do loops when we use continue the rest of the loop will not me excecuted and it will go back to check the condition of the loop.


What are the differences between Break Continue and Exit?

break - The break statement is used to jump out of loop. After the break statement control passes to the immediate statement after the loop.continue - Using continue we can go to the next iteration in loop.exit - it is used to exit the execution of program.note: break and continue are statements, exit is function.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).


How do you use a C-continue statement in a block- without any looping or conditional statements?

In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.


What is the special character used to match any single character in a search string?

If you're using regular expressions, the character commonly used is a dot '.'. This will match any character except a newline. To match all characters including newlines would involve a statement, not a single character.


What statement is used to skip the remainder of the body of a repetition structure and proceed with the next iteration of the loop?

The continue statement skips the remaining statements in the current iteration and execution proceeds with the iteration control statement for the next iteration.


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


What is the difference between SQL and SQLPlus?

Structured Query Language, abbreviated as SQL, is a programming language. It is designed to manage data stored in relational databases. Various commands or operations like Select, Group by, Insert, Modify, etc, are implemented using SQL to fetch, retrieve or add data to the database. It can be used in correlation with other programming languages like Python or Java, to build applications. Any tool or application can communicate with the Oracle server using the command language SQL. Oracle SQL has numerous extensions. A SQL statement that you enter is saved in memory's "SQL buffer" and stays there until you write another SQL statement. An Oracle tool called SQLPlus identifies and sends SQL statements to the Oracle9i Server for execution. It has a built-in command language. It is a client program allowing users to enter SQL and PL/SQL commands and execute them. SQLPlus comes with the Oracle installation. It is commonly used to develop and run SQL and PL/SQL statements, scripts, and reports. SQL SQLPLus is a language used to access data from the Oracle server by talking with it. Recognizes SQL statements and sends them to the server Is based on American National Standards Institute (ANSI)-standard SQL Is Oracle's interface for running SQL statements proprietary? manipulates the database's data and table definitions. does not permit changing of database values employs a termination character to carry out directives right away. does not need termination characters and immediately carries out commands. Uses functions to perform some formatting Uses commands to format data