码迷,mamicode.com
首页 >  
搜索关键字:like    ( 7615个结果
mysql大小写
查看是否区分大小写 show Variables like '%table_names' 查看lower_case_table_names的值,0代表区分,1代表不区分 修改方法 1.用ROOT登录,修改/etc/my.cnf 2.在[mysqld]下加入一行:lower_case_table_na ...
分类:数据库   时间:2021-06-17 17:06:18    阅读次数:0
MySQL-查询
会发现结果是NULL 说明某一列中有NULL 发现commission_pct这一列中有NULL IFNULL函数查询字段中是否为NULL 我们把IFNULL用到连接字段中,结果如下 条件查询 案例一 案例二 按逻辑表达式筛选 案例一 案例二 另一种写法 模糊查询 案例一 案例二 案例三 或者 也可 ...
分类:数据库   时间:2021-06-10 18:44:50    阅读次数:0
查询优化手段之临时表
create temporary table temp_t like t1; alter table temp_t add index(b); insert into temp_t select * from t2 where b>=1 and b<=2000; select * from t1 j ...
分类:其他好文   时间:2021-06-10 18:34:39    阅读次数:0
Windows 安装mysql及修改默认文件存储路径
本文接下来,示例将数据库data移到E盘:4、首先通过cmd进入控制台,输入: mysql -u root -p 然后输入密码,进入mysql. 进入mysql之后,通过如下命令查看data默认存储路径: show variables like '%dir%'; 路径如图: 5、接下来,就可以修改d ...
分类:数据库   时间:2021-06-08 23:34:24    阅读次数:0
爬虫_10-20
0x01--新发地菜价 #!/usr/local/bin/python3.6 # -*- encoding=utf-8 -*- """ @coder: diygou @since: 2021/6/5下午6:33 """ import requests from bs4 import Beautifu ...
分类:其他好文   时间:2021-06-06 18:49:24    阅读次数:0
jQuery入口函数测试
<script src="js/jquery-1.12.4.js"></script><script> window.onload = function (ev) { /* jQ入口函数传入不同参数得到的实例 1.传入 '' null undefined NaN 0 false 2.传入html片段 ...
分类:Web程序   时间:2021-06-06 18:43:59    阅读次数:0
数据库高级部分
数据库高级部分 1、编码mysql 1.1、查看mysql编码 mysql> show variables like 'character%';+ + +| Variable_name | Value |+ + +| character_set_client | utf8 || character_ ...
分类:数据库   时间:2021-06-04 19:20:04    阅读次数:0
私人书信
My Dear Friend, Congratulations on your graduation from college! I am glad to hear that you plan on starting your career in China, and I would like to ...
分类:其他好文   时间:2021-06-02 19:29:05    阅读次数:0
OC基础:重温weak
###一、ISA结构 struct objc_object { private: isa_t isa; }; union isa_t { Class cls; uintptr_t bits; #if defined(ISA_BITFIELD) // ISA_BITFIELD意为 isa位域 stru ...
分类:其他好文   时间:2021-06-02 18:18:32    阅读次数:0
nginx
nginx简介 nginx(发音同engine x)是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like协议下发行。 nginx由俄罗斯的程序设计师Igor Sysoev所开发,最初供俄国大型的入口网站及搜寻引擎Rambler使用。 第一个公 ...
分类:其他好文   时间:2021-06-02 18:12:57    阅读次数:0
7615条   上一页 1 2 3 4 ... 762 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!