









Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An overview of sql data definition, including data types supported by sql, integrity enhancement features, creating and using views, transactions, and access control. Topics covered include sql data types (boolean, character, bit, exact numeric, approximate numeric, date/time, interval, character/binary large object), required data, domain constraints, entity integrity, referential integrity, and enterprise constraints. The document also explains what a view is, how to create or delete a view, advantages and disadvantages of views, transactions, and access control using sql.
Typology: Slides
1 / 17
This page cannot be seen from the preview
Don't miss anything!










position VARCHAR(10) NOT NULL
Example: CREATE SCHEMA SqlTests AUTHORIZEATION Smith;
DROP SCHEMA SqlTests;
GRANT SELECT, UPDATE (salary) ON Staff TO Personnel, Director;
REVOKE ALL PRIVILEGES ON Staff FROM Director;