0 votes
in Oracle by
What is the use of Double Ampersand (&&) in SQL Queries? Give an example

1 Answer

0 votes
by

You can use && if you want to reuse the variable value without prompting the user each time.

For example: Select empno, ename, &&column_name from employee order by &column_name;

...