What is trigger in sql? Explain
Why do we use procedures in sql?
what is variable in package specification
What is a memo field?
Store procedure will return a value?
When we give SELECT * FROM EMP; How does oracle respond?
24 Answers Accenture, HCL, Infosys,
Is sql dba a good career? : SQL DBA
What is Raise_application_error ?
What is diff between bulk collect and forall
Is pl sql a programming language?
What is a .db file?
1 SELECT a.field1, b.field2, c.field3, d.field4 2 FROM atable a, atable b, ctable c, dtable d 3 ? 4 ORDER BY 1 What is the minimum number of joins that must be specified on line 3 in the sample code above to properly link the tables? Notice that the table "atable" is aliased twice: once as "a" and once as "b." 1. One join 2. Two joins 3. Three joins 4. Four joins 5. Five joins
Can %notfound return null after a fetch?