sql - 不同类型的SQL之间的区别?

标签 sql database

<分区>

所有不同类型的 SQL 之间有什么区别?我听说过 PostgreSQL、SQLite、MySQL、SQL……它们之间有什么区别?

最佳答案

SQL is Structured Query Language is a database computer language designed for managing data in relational database management systems (RDBMS).

PostgreSQL is an object-relational database management system (ORDBMS).1 It is released under a BSD-style license and is thus free software. As with many other open-source programs, PostgreSQL is not controlled by any single company, but has a global community of developers and companies to develop it.

SQLite is an ACID-compliant embedded relational database management system contained in a relatively small (~225 KB1) C programming library. The source code for SQLite is in the public domain.

MySQL (pronounced /maɪˌɛskjuːˈɛl/1 My S-Q-L, or "My sequel" /maɪˈsiːkwəl/) is a relational database management system (RDBMS)2 which has more than 6 million installations. 3 MySQL stands for "My Structured Query Language". The program runs as a server providing multi-user access to a number of databases.

关于sql - 不同类型的SQL之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1326318/

相关文章:

php - 检查当前登录用户的状态

sql - 使用正则表达式从字符串中删除中断标记

sql - PostgreSQL count() 和数组

mysql - 如何查找状态更改 MySQL 的时间差

mysql - 如何获取使用 Mysql 排序的不同格式化日期列表

c# - 登录不起作用

php - 合并两个松散连接的 MySQL 表

database - 在定义表中使用外键还是在代码中使用常量?

mysql - 将多行mysql字符串转换为预定义的csv格式?

php - 避免电子商务场景中的竞争条件