- MySQL 8 for Big Data
- Shabbir Challawala Jaydip Lakhatariya Chintan Mehta Kandarp Patel
- 210字
- 2021-08-20 10:06:09
Overview of SQL
Structured Query Language (SQL) is used to manipulate, retrieve, insert, update, and delete data in relational database management system (RDBMS). To make it simpler, SQL tells the database what to do and exactly what it needs. SQL is a standard language that all RDBMS systems such as MySQL, MS Access, MS SQL, Oracle, Postgres, and others use.
Using SQL, the user can access, define and manipulate the data from MySQL. We can leverage SQL modules, libraries, and precompilers to embed with the other languages which help in creating/dropping databases and tables, manage view, stored procedures, function etc. in a database. Using SQL, we can also manage permissions on tables, procedures and different views.
The following are a few important SQL commands that we explain in detail later in the chapter:
- SELECT: Extracts data from a database
- UPDATE: Updates data from a database
- DELETE: Removes existing records from a database
- INSERT INTO: Add new information into a database
- CREATE DATABASE: Creates a new database
- ALTER DATABASE: Modifies or change characteristics of a database
- DROP DATABASE: Delete a database
- CREATE TABLE: Creates a new table
- ALTER TABLE: Modifies or change characteristics of a table
- DROP TABLE: Deletes a table
- CREATE INDEX: Creates an index
- DROP INDEX: Remove an index
- Vue.js 3.x快速入門
- 從零構建知識圖譜:技術、方法與案例
- DevOps with Kubernetes
- LabVIEW Graphical Programming Cookbook
- Mastering Articulate Storyline
- Programming ArcGIS 10.1 with Python Cookbook
- 數據結構習題精解(C語言實現+微課視頻)
- PostgreSQL 11從入門到精通(視頻教學版)
- Mastering Swift 2
- 人人都懂設計模式:從生活中領悟設計模式(Python實現)
- Visual C++數字圖像處理技術詳解
- SharePoint Development with the SharePoint Framework
- 程序員修煉之道:通向務實的最高境界(第2版)
- Android開發案例教程與項目實戰(在線實驗+在線自測)
- 第一行代碼 C語言(視頻講解版)