# Mysql具体使用
**异步mysql连接池**
例子可参考ServerMysqlTest.php文件
## 创建表
示例:
```php
yield $this->mysql_pool->dbQueryBuilder->coroutineSend(null, "
CREATE TABLE IF NOT EXISTS `MysqlTest` (
`peopleid` smallint(6) NOT NULL AUTO_INCREMENT,
`firstname` char(50) NOT NULL,
`lastname` char(50) NOT NULL,
`age` smallint(6) NOT NULL,
`townid` smallint(6) NOT NULL,
PRIMARY KEY (`peopleid`),
UNIQUE KEY `unique_fname_lname`(`firstname`,`lastname`),
KEY `fname_lname_age` (`firstname`,`lastname`,`age`)
) ;
");
```
## 删除表(直接执行sql语句)
示例:
```php
yield $this->mysql_pool->dbQueryBuilder->coroutineSend(null, "
DROP TABLE `MysqlTest`;
");
```
## 插入
示例:
```php
$value = yield $this->mysql_pool->dbQueryBuilder->insert('MysqlTest')
->option('HIGH_PRIORITY')
->set('firstname', 'White')
->set('lastname', 'Cat')
->set('age', '25')
->set('townid', '10000')
->coroutineSend();
```
## 替换
示例:
```php
$value = yield $this->mysql_pool->dbQueryBuilder->replace('MysqlTest')
->set('firstname', 'White')
->set('lastname', 'Cat')
->set('age', '26')
->set('townid', '10000')
->coroutineSend();
```
## 修改
示例:
```php
$value = yield $this->mysql_pool->dbQueryBuilder->update('MysqlTest')
->set('age', '20')
->where('townid', 10000)
->coroutineSend();
```
## Update 字段值的增加/减少
示例:
```php
$value = $this->db->update('MysqlTest')
->set("score","score+1",false)
->where('townid', 10000)->coroutineSend();
```
## 查询
示例:
```php
$value = yield $this->mysql_pool->dbQueryBuilder->Select('*')
->from('MysqlTest')
->where('townid', 10000, "<")
->orderBy("townid","desc")
->limit(10)
->coroutineSend();
```
## 删除
示例:
```php
$value = yield $this->mysql_pool->dbQueryBuilder->delete()
->from('MysqlTest')
->where('townid', 10000)
->coroutineSend();
```
## 返回值
[Mysql返回值说明](mysql返回值.md)
- Introduction
- SD 3.X文档连接
- 导言
- 用户案例
- 基于Swoole扩展分布式全栈开发框架
- 选择SD框架助力企业开发
- 捐赠SwooleDistributed项目
- 框架性能报告
- 更新日志
- VIP服务福利
- 安装与配置
- 【推荐】全自动安装部署
- 环境要求
- 使用Composer安装/更新SD框架
- 通过Docker安装
- 代码结构
- 启动命令
- 服务器配置
- 服务器基础配置server.php
- 客户端协议配置client.php
- business.php
- log.php
- 微服务及集群配置consul.php
- fileHeader.php
- mysql.php
- redis.php
- 定时任务配置timerTask.php
- 服务器端口配置ports.php
- catCache.php
- 验证服务启动成功
- 微服务-Consul
- 日志工具-GrayLog
- 集群-Cluster
- 内核优化
- 入门教学
- 开发流程
- 开发前必读
- 开发规范
- 基本流程
- 框架入口
- Model数据模型
- Controller控制器
- 协程
- 协程基础
- 迭代器
- 调度器
- 使用协程的优势
- 通过协程的方法屏蔽异步同步的区别
- Select多路选择器
- 协程Sleep
- 通用协程方法
- 设置超时
- 设置无异常
- 设置降级函数
- initAsynPools
- dump
- 封装器与路由器
- 封装器
- sendToUid
- 路由器
- sendToUids
- 对象池
- 扩展组件
- 中间件
- Redis使用介绍
- RedisAsynPool
- Redis具体使用
- sendToAll
- RedisRoute
- Redis+Lua
- Mysql使用介绍
- MysqlAsynPool
- Mysql返回值
- 如何获取构建的mysql语句
- 如何执行一个SQL
- 如何执行事务
- stopTask
- Mysql具体使用
- 异步客户端
- Loader
- MqttClient
- model
- SdTcpRpcPool
- task
- HttpClientPool
- view
- TcpClientPool
- AMQP
- initialization
- Memory
- destory
- Cache
- Lock
- Pool
- EventDispatcher
- Process
- Cluster
- TimerTask
- Reload
- Consul
- Context
- 自定义进程
- 进程间RPC
- $http_input
- CatCache
- $http_output
- TimerCallBack
- 专题
- HTTP专栏
- TCP专栏
- 基础知识
- WebSocket专栏
- 微服务
- Consul配置
- RPC
- REST
- AMQP异步任务系统
- MQTT简易服务器
- Docker化以及资源编排
- 快速搭建公司内部统一的开发环境
- 使用HTTPS/WSS
- 订阅/发布
- 游戏专题
- 类介绍
- AppServer
- clearState
- onOpenServiceInitialization
- SwooleDistributedServer
- get_instance
- kickUid
- bindUid
- unBindUid
- coroutineUidIsOnline
- coroutineCountOnline
- setTemplateEngine
- isWebSocket
- isTaskWorker
- getSocketName
- initAsynPools
- addAsynPool
- getAsynPool
- getServerAllTaskMessage
- Controller
- onExceptionHandle
- send
- sendToUid
- sendToUids
- sendToAll
- sendToGroup
- close
- getContext
- defaultMethod
- $redis_pool
- $mysql_pool
- $request_type
- $fd
- $uid
- $client_data
- $request
- $response
- $loader
- $logger
- $server
- $config
- Model
- initialization
- destory
- View
- Task
- stopTask
- HttpInput
- postGet
- post
- get
- getPost
- getAllPostGet
- getAllHeader
- getRawContent
- cookie
- getRequestHeader
- server信息
- getRequestMethod
- getRequestUri
- getPathInfo
- HttpOutput
- setStatusHeader
- setContentType
- setHeader
- end
- setCookie
- endFile
- 单元测试