Databases

Create Table

CreateTable
  • 我们忽略一些细节后的精简版本

    CreateTableDemo

例子:

Drop Table

drop table
  • 使用if exists如果不存在会 报错

Modifying Tables

Insert

InsertRows

Update

UpdateRows

Delect

DeleteRows

Example

Python and SQL

SQL 注入攻击

解决方法:

Database Connections

多个程序可能同时连接到同一数据库,可能从同一 table 上插入值或者读取值。

  • 数据库可以处理同一数据库进行多个连接、多个客户端改变同一个 table 的情况

例子: 21点游戏, python 程序连接数据库来执行游戏, eval-print-loop 也连接数据库来看牌

Last updated

Was this helpful?