Practical 1: AIM:-Write All The Queries For Data Definition
Practical 1: AIM:-Write All The Queries For Data Definition
Practical 1: AIM:-Write All The Queries For Data Definition
varchar(60));
CREATE VIEW Views are logical windows for users to see the
results of operation on one or more base tables.
CREATE VIEW <view name>
[<view column names>]
As<query specification>
PRACTICAL 2
AIM:-Write all the queries for Data Manipulation language
(DML) in RDBMS.
DML (Data manipulation language )-DML is used to
manipulate data available in a database system .It means to
add, delete, retrieve or update data available in database .
Typical commands are listed below:
INSERT An insert commands adds a new record with
all columns in the table.
INSERT INTO<table name>
VALUES(<values>)
QUERY: - To retrieve the list of names ,cities and states of all the
clients.
select name,city,state from Client_Master;