-
-
What is the difference between ROUND and TRUNC function in SQL? ">
What is the difference between ROUND and TRUNC function in SQL?
Both TRUC and ROUND are single value functions.
TRUNC:
TRUNC function truncates that is in other words cuts off to the digits specified.
The general syntax of TRUNC function is:
TRUNC(number, precision);
For instance:
Suppose the value of salary in employee table for ename= ’Exforsys’ is 55.666
Then
Select... -
What are the commands that come in the category of DML in SQL?
DML refers to Data Manipulation Statements. That is used for accessing and modifying values or data present in the database.
The commands that come in the category of DML in SQL
INSERT
SELECT
DELETE
UPDATE
INSERT:
This command is used to insert rows into the table.
SYNTAX:
INSERT INTO tablename... -
-
-
-
-
-
-
-
-
How to find the Foreign keys of all child tables when pass the Parent Table name.
I developed like below.Any experts query ....please send.selecttable_name,constraint_namefrom user_cons_columns where column_name=(select a.COLUMN_NAME from user_cons_columns a,user_constraints bwhere a.TABLE_NAME=b.TABLE_NAME and b.constraint_type in ('P')and a.TABLE_NAME='DEPT')and constraint_name like '%FK%'
-
Difference between IS and AS in oracle
What is the difference between IS and AS in Oracle PL/SQL..?
-
Is (DDL) Data Manipulation Language statements Autocommit?
No. Only the DDL(Data Definition Language )statements like create,alter,drop,truncate are auto commit.But the DML statements are should be saved by giving the commit statement after execute the query
-
-
-
-
-
-
Import MS-Access Tables
How to import tables from MS-Access to Oracle?
Oracle Basics Interview Questions
Ans