xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

SQL All In One

SQL All In One

Structured Query Language

SQL is an ANSI (American National Standards Institute) standard, but there are different versions of the SQL language.
Most SQL database programs have their own proprietary extensions in addition to the SQL standard, but all of them support the major commands.

SQL是ANSI(美国国家标准学会)标准,但是有不同版本的SQL语言。
除SQL标准外,大多数SQL数据库程序都有其专有的扩展,但它们都支持主要命令。

SQL is used to access and manipulate a database.
MySQL is a program that understands SQL.

SQL can:

  • insert, update, or delete records in a database.
  • create new databases, table, stored procedures, views.
  • retrieve data from a database, etc.

customers table

Basic SQL

# SHOW DATABASES;
SHOW DATABASES;

# SHOW TABLES;
SHOW TABLES;

# SHOW COLUMNS FROM table_name;
SHOW COLUMNS FROM customers;

CURD

# SELECT column_list FROM table_name;

SELECT FirstName FROM customers;






refs

SQL

https://www.sololearn.com/Play/SQL/

https://www.w3schools.com/sql/

https://www.runoob.com/sql/sql-tutorial.html

DataBase All in One

https://www.cnblogs.com/xgqfrms/p/13570104.html



©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


posted @   xgqfrms  阅读(238)  评论(5编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
历史上的今天:
2019-08-30 React In Depth All In One
2019-08-30 js idle All In One
2018-08-30 MBP 2018 & Mac keyboard shortcuts All In One
2018-08-30 apple & react & i18n & L10n
2018-08-30 chrome webstore
2016-08-30 Web 开发常用 CSS 单位,CSS 单位转换器 All In One
2016-08-30 Sass && SCSS && Less
点击右上角即可分享
微信分享提示