BA 2.2 Prashant
BA 2.2 Prashant
Business Analytics
---------------------------------------------------------------------------------------------
Aim of Experiment: Create Database, Create Table, Alter Table, Create View, Creating
Function, Creating Index and Dropping Objects.
SYNTAX:
CREATE VIEW view_name AS
SELECT column1, column2, ...
FROM table_name WHERE condition;
(5). Creating Function :-
1) Count
SELECT COUNT(*) FROM Student
WHERE Math_score > 60;
Learning outcomes:-
1. I have learn how to create database
2. I have learn how to create and alter table.
3. I have learn how to create view, indexes and function.