1 / 1

SQL COMMANDS DATA SCIENTIST MUST KNOW

SQL is used to communicate with a database. According to ANSI (American National Standards Institute), it is the standard language for relational database management systems. SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database.

Télécharger la présentation

SQL COMMANDS DATA SCIENTIST MUST KNOW

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SQL COMMANDS DATA SCIENTIST MUST KNOW DATA DEFINITION DATA MANIPULATION CREATE: Used to create table/databases. INSERT: Creates a record in a table. DELETE: Delete rows or the entire table. ALTER: Used to modify values in tables. UPDATE: To modify records in a table. DROP: Deletes a table from the database. SELECT: Retrieves records from a table. TRUNCATE Deletes all rows from a table. TRANSACTION CONTROL LANGUAGE DATA CONTROL LANGUAGE COMMIT: Save changes to the database. GRANT: Used to provide privileges to database objects for a user ROLLBACK: Undo changes made to the database. REVOKE: Withdraw user privileges on database objects if any granted. SAVEPOINT: Creates a rollback point in your transaction. www.Learnbay.co

More Related