Day 9 - SQL Commands - YouTube
Day 9 - SQL Commands - YouTube
INDEXES:
To create an Index:
create index salary_index on emp_table(salary);
To Drop an Index:
drop index salary_index;
___________________________________________________________________________________
_____
Granting Permissions:
grant select on employee to PS1;
grant insert on employee to PS1;
grant update on employee to PS1;
grant delete on employee to PS1;
Revoking Permissions
revoke delete on employee from PS1;
revoke update on employee from PS1;
revoke insert on employee from PS1;
revoke select on employee from PS1;
Remove a User:
drop user PS1;