0% found this document useful (0 votes)
16 views5 pages

Database Management System

Uploaded by

NAruto
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
16 views5 pages

Database Management System

Uploaded by

NAruto
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
Database Management System Database management systems (DBMS) play a crucial role in modern business operations. They are software applications that allow businesses to efficiently store, organize, retrieve, and manage vast amounts of data, Here are some key ways in which DBMS contribute to business success Data Organization and Storage Data Retrieval and Analysis Data Security Data Consistency and Integrity Concurrency Control Scalability and Performance: They offer features such as clustering, partitioning, and replication to improve performance and accommodate increasing volumes of data and users. 7. Integration with Applications 8. Business Intelligence and Decision Support 9. Compliance and Regulatory Requirements: DBMS help businesses comply with these regulations by providing features for audit trails, data governance, and What is SQL? SQL stands for Structured Query Language SQL lets you access and manipulate databases What Can SQL do? SQL can execute queries against a database SQL can retrieve data from a database SQL can insert records in a database SQL can update records in a database SQL can delete records from a database + SQL can create new databases + SQL can create new tables in a database + SQL can create stored procedures in a database + SQL can create views in a database + SQL can set permissions on tables, procedures, and views Using SQL in Your Web Site To build a web site that shows data from a database, you will need ‘An RDBMS database program (i.e. MS Access, SQL Server, Mysou) To use a server-side scripting language, like PHP or ASP To use SOL to get the data you want Semicblin after $QL'Statements? Some database systems require a semicolon at the end of each SQL statement. Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server. The Most Important SQL Commands + SELECT - extracts data from a database “UPDATE - updates data in a database *DELETE - deletes data from a database sINSERT INTO - inserts new data into a database + CREATE DATABASE - creates a new database *ALTER DATABASE - modifies a database + CREATE TABLE - creates a new table + ALTER TABLE - modifies a table +DROP TABLE - deletes a table + CREATE INDEX - creates an index (search key) *DROP INDEX - deletes an index

You might also like