What are the attributes of SQL*PLUS ?
Answer Posted / chandra shekhar
Dear Pushkar, SQL*PLUS commands are not used to manipulate the data in tables. Its DML commands in SQL are used to manipulate the date in the table like INSERT, UPDATE, DELETE, MERGE.
Table definition commands comes under DDL commands like CREATE, ALTER, DROP, TRUNCATE.
Some of the Attributes of SQL*PLUS commands are
1. It need not be terminated by semi colon
2. It can be abbreviated
Eg:- DESCRIBE can be written as DESC
APPEND can be written as a
RUN can be written as r
regards
j
Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
what is bdb (berkeleydb)? : Sql dba
Why functions are used in sql?
What is delete command in sql?
what is difference between delete and truncate commands? : Sql dba
How do you optimize a stored procedure in sql?
What is difference between db2 and sql?
How do you update sql?
What is a constraint? Tell me about its various levels.
Which join is default?
How to use transactions efficiently : transact sql
Enlist some predefined exceptions?
What does select * from mean in sql?
What is rownum and rowid?
What are local and global variables and their differences?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)