Difference between inline query and stored procedure?

Answer Posted / jas

Select statement which is part of form clause of any
another statement is called as inline query.
Cannot take parameters.
Not a database object

Procedure:
Can take paramters
Database object
can be used globally if same action needs to be performed.

Is This Answer Correct ?    27 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we use ddl commands in pl sql?

563


How to write pl sql program in mysql command prompt?

521


Can we use joins in subquery?

539


Which nosql database is best?

519


how to use myisamchk to check or repair myisam tables? : Sql dba

512






What is the difference between nvl function, ifnull function, and isnull function?

603


What is mutating table error?

670


What is normalization sql?

515


Table 1: col1 Timestamp ---------------- 01-mar-2012 11:12:46 Table 2: col2 Timestamp -------------------- 01-mar-2012 11:12:10 01-mar-2012 11:11:23 Write a query to display a row with table2 col2 value less than tabl1 col1 value. Maximum timestamp value previous to table1 col1 value. Display a result as: Col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10

1733


Explain ddl statements in pl/sql?

582


how to show all tables with 'mysql'? : Sql dba

612


List different type of expressions with the example.

551


what are the differences between binary and varbinary? : Sql dba

538


How do I add a primary key to a table?

547


What does select * from mean in sql?

2004