DBSLC
DBSLC
DBSLC
• They will spend time with the business to understand their day-to-
day processes and they will also speak to different people to
understand the needs of the business.
Requirements collection and Analysis
• It is imperative that the scope of the database is defined here and
that all requirements are gathered, documented, and analyzed.
Database Objects
• Database objects are any structures used within the database as a whole to store
and display data.
• For example, the most common and simple database object is a table. Another
example of a database object would be an index or sequence
Data Definition Language
• DDL is a database programming language, and it’s used specifically for
modifying and creating database objects.
• DDL is the tool we’d use to add more shelves, take shelves away, or
modify existing shelves.
• Much like the Create command, Alter has its own syntax, which is as
follows:
• DML can be used to alter large amounts of data in one fell swoop, saving
some poor souls from having to edit each individual piece of data manually.
Examples Of DDL
• SELECT
• INSERT
• UPDATE
• DELETE
SELECT
• This command is used to retrieve rows from a table.