上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 25 下一页
摘要: 字段a和b的字段名和备注调换 等同于 字段a和b值交换 在MySQL中,您可以使用ALTER TABLE语句来重命名表的列名并修改列的注释。要交换表order中列a和b的列名和注释,您可以按照以下步骤进行操作: 1、a -> temp 使用ALTER TABLE语句和MODIFY COLUMN子句将 阅读全文
posted @ 2023-04-07 15:46 pine007 阅读(129) 评论(0) 推荐(0)
摘要: 原文:https://www.jianshu.com/p/a56b79ed2cb2 1、首先要做一些设置 首先在模型类中要使用SoftDeletestrait,该trait为软删除提供一系列相关方法,具体可参考源码Illuminate\Database\Eloquent\SoftDeletes,此外 阅读全文
posted @ 2023-04-04 18:19 pine007 阅读(325) 评论(0) 推荐(0)
摘要: DNMP:https://github.com/yeszao/dnmp DNMP(Docker + Nginx/Openresty + MySQL5,8 + PHP5,7,8 + Redis + ElasticSearch + MongoDB + RabbitMQ)是一款全功能的LNMP一键安装程序 阅读全文
posted @ 2023-03-27 15:45 pine007 阅读(148) 评论(0) 推荐(0)
摘要: 原文:https://cloud.tencent.com/developer/article/1701451 1、安装前必读 在安装 Docker 之前,先说一下配置,我这里是Centos7 Linux 内核:官方建议 3.10 以上,3.8以上貌似也可。 注意:本文的命令使用的是 root 用户登 阅读全文
posted @ 2023-03-25 15:26 pine007 阅读(55) 评论(0) 推荐(0)
摘要: 假设订单产品表的表名为 order_product,包含字段如下: order_id:订单ID product_id:产品ID 下面是查询只包含产品A001,A002,A003的订单的SQL语句: SELECT order_id FROM order_product WHERE product_id 阅读全文
posted @ 2023-03-24 18:48 pine007 阅读(796) 评论(0) 推荐(0)
摘要: 1、需求 要查1个订单 存在3件及以上商品一样的其它订单 2、数据表 表 :order_sku 字段:order_code, sku CREATE TABLE `order_sku` ( `id` int(10) NOT NULL, `order_code` varchar(64) DEFAULT 阅读全文
posted @ 2023-03-17 16:45 pine007 阅读(183) 评论(0) 推荐(0)
摘要: 18个Laravel8数据库查询优化建议 原文:https://learnku.com/laravel/t/61384 如果应用运行缓慢或存在大量数据库查询,请按照以下性能优化提示来缩短应用的加载时间。 1. 检索大型数据集 本提示主要侧重于提高处理大型数据集时应用的内存使用率。 处理大的集合时,分 阅读全文
posted @ 2023-03-14 10:25 pine007 阅读(266) 评论(0) 推荐(0)
摘要: 参考:https://zhuanlan.zhihu.com/p/28948567 1、问题 不小心把缓存 stash(储藏)起来的代码删除了 sourcetree删除 命令行删除 $ git stash list #stash@{0}: On pine/test: test $ git stash 阅读全文
posted @ 2023-03-08 18:48 pine007 阅读(445) 评论(0) 推荐(0)
摘要: 原文:https://www.html5tricks.com/15-jquery-html5-image-player.html 阅读全文
posted @ 2023-01-19 15:16 pine007 阅读(154) 评论(0) 推荐(0)
摘要: 源码:https://github.com/pine007/source-codes/blob/main/html-css-js-手写简易轮播图.zip 1、效果 2、编码 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>轮播图 阅读全文
posted @ 2023-01-19 15:13 pine007 阅读(123) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 25 下一页