deference between & and &&

Answers were Sorted based on User's Feedback



deference between & and &&..

Answer / esakkiraja

Both of these are substitution variable adn difference
between & and &&:

&--->the variable prefixed with an ampersand (&) to
prompt the user for a value.

eg:
SELECT employee_id, last_name, salary, department_id
FROM employees
WHERE employee_id = &employee_num ;

It should prompt the user to enter a value for employee_num


&&--->Mainly we used the double-ampersand (&&) if you want
to reuse the variable value without prompting the user each
time.

eg:SELECT employee_id, last_name, job_id, &&column_name
FROM employees
ORDER BY &column_name;

Here the user is asked to give the value for variable
column_name only once. The
value supplied by the user (department_id) is used both for
display and ordering of data.

Is This Answer Correct ?    28 Yes 1 No

deference between & and &&..

Answer / fahad

&-it is used in run time.it ask d value as new and old value
&&-it repeats the duplicacy and it repeat d same output..
ex.single ampersent...
select employee_id,last_name,hire_date,salary from employees
where department_id=&department_id;
when u enter dis statement.
in output it vil ask d value..
enter value for department_id=



query for &&..
select employee_id,last_name,hire_date,salary from employees
where department_id=&&department_id;

Is This Answer Correct ?    7 Yes 6 No

Post New Answer

More Oracle AllOther Interview Questions

A table is classified as a parent table and you want to drop and re-create it. How would you do this without affecting the children tables?

3 Answers  


Give the two types of tables involved in producing a star schema and the type of data they hold.

1 Answers  


How would you go about generating an EXPLAIN plan?

1 Answers   Satyam,


How client makes connection with server in client/server architecture?

1 Answers   CA,


what is the difference b/w oracle8i and oracle9i

3 Answers   iGate,






Explain the use of table functions.

0 Answers  


HOW TO SPOT AHIERARCHY?

0 Answers  


can we drop dual table

7 Answers   Metric Stream,


Explain an ORA-01555

2 Answers  


Explain the difference between a hot backup and a cold backup and the benefits associated with each

1 Answers  


What is the use of lockboxes? : oracle accounts receivable

0 Answers  


What is an Oracle database Partial Backup?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)