码迷,mamicode.com
首页 >  
搜索关键字:comm    ( 8606个结果
注释的正则表达式
最近在读Modern Complier Implementatnion in C. 做到语法分析(syntax analysis)时,发现不知道如何写注释的正则表达式: 以下的正则表达式: "/*"[.|\n]"*/" 会根据最长匹配原则,将两行注释间的代码当作注释: /*comments*/ va ...
分类:其他好文   时间:2021-04-10 12:54:54    阅读次数:0
get_queryset筛选
筛选 Manager提供的根QuerySet描述了数据库表中的所有对象。不过,通常,您只需要选择完整对象集的一个子集即可。 — Django文档 REST框架的通用列表视图的默认行为是返回模型管理器的整个查询集。通常,您会希望您的API限制查询集返回的项目。 筛选子类的任何视图的查询集的最简单方法G ...
分类:其他好文   时间:2021-04-09 13:36:41    阅读次数:0
centOS7.7安装MySQL教程
1.由于centOS7.7中默认安装了MariaDB,需要先进行卸载 rpm -qa | grep -i mariadb rpm -e --nodeps mariadb-libs-5.5.64-1.el7.x86_64 2.下载MySQL仓库并安装 wget https://repo.mysql.c ...
分类:数据库   时间:2021-04-09 13:05:48    阅读次数:0
java_判空工具类
package com.supermarket.common.utils;import java.lang.reflect.Field;import java.lang.reflect.Method;import java.text.SimpleDateFormat;import java.time ...
分类:编程语言   时间:2021-04-08 13:35:35    阅读次数:0
git强制回退远程仓库到某个提交
git log #查看commit id git reset --hard 74b6210ec0b #这里是commit id git push -f # 强制推上去 ...
分类:其他好文   时间:2021-04-07 11:35:02    阅读次数:0
docker-compose 常见问题
WARNING: Found orphan containers (toolbox-web) for this project. If you removed or renamed this service in your compose file, you can run this command ...
分类:其他好文   时间:2021-04-07 10:38:38    阅读次数:0
windbg 扩展命令
windbg扩展工具及使用说明下载地址:WinDbg http://www.windbg.org/ 1. Download the mex.exe archive. 2. Extract to any folder. 3. Use the following command to load the ...
分类:数据库   时间:2021-04-05 12:31:07    阅读次数:0
powerdesigner通过导入excel方式创建物理表详解
一、创建excel表 本示例中创建了三张sheet表分别是t_user、t_role、t_user_role三张表(sheet表可以建多个,表中数据的格式其实是可以自定义的,此处不做阐述)。如图所示: 二、创建新的物理数据模型 1、打开PowerDesigner,点击【File】==》【New Mo ...
分类:其他好文   时间:2021-04-05 12:09:34    阅读次数:0
oracle查看执行最慢与查询次数最多的sql语句
一、查询执行最慢的sql select * from (select sa.SQL_TEXT, sa.SQL_FULLTEXT, sa.EXECUTIONS "执行次数", round(sa.ELAPSED_TIME / 1000000, 2) "总执行时间", round(sa.ELAPSED_T ...
分类:数据库   时间:2021-04-02 13:30:19    阅读次数:0
mysql ||
将多条记录的某个字段合并成一条记录 group_concat : 将某字段多条记录合并,默认逗号分隔 select group_concat(c.invoice_no) from ibc_comm_invoice c where c.settle_nos like concat('%',m.sett ...
分类:数据库   时间:2021-03-31 12:35:16    阅读次数:0
8606条   上一页 1 ... 8 9 10 11 12 ... 861 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!