码迷,mamicode.com
首页 >  
搜索关键字:like    ( 7615个结果
1048. Find Coins (25)
Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which cou...
分类:其他好文   时间:2015-12-06 11:28:02    阅读次数:156
LeetCode - Add Digits
题目:Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like...
分类:其他好文   时间:2015-12-06 11:20:11    阅读次数:103
PIC32MZ tutorial -- Blinky LED
Today I finish the "Blinky LED" application on PIC32MZ starter kit. This application let LED1 blink with 0.5HZ frequence. The pseudo code is like ...
分类:其他好文   时间:2015-12-05 19:21:06    阅读次数:222
Mysql 乱码配置
转自:http://www.ha97.com/5359.html一、登录MySQL查看用SHOW VARIABLES LIKE ‘character%’;下字符集,显示如下:+--------------------------+----------------------------+| Vari...
分类:数据库   时间:2015-12-05 00:28:37    阅读次数:241
SQL Like模糊查询一些小知识
模糊查询:where mc like '值':返回值等同于where mc ='值'where mc like '%值':匹配 名称是 '*值'(以“值”作为结尾)的所有数据,*表示任何值任何长度;wheremc like '%值%':返回所有包含【值】的所有数据。where mc like '值1...
分类:数据库   时间:2015-12-04 20:42:35    阅读次数:201
SQL Like模糊查询一些小知识
模糊查询:where mc like '值':返回值等同于where mc ='值'where mc like '%值':匹配 名称是 '*值'(以“值”作为结尾)的所有数据,*表示任何值任何长度;wheremc like '%值%':返回所有包含【值】的所有数据。where mc like '值1...
分类:数据库   时间:2015-12-04 18:41:32    阅读次数:199
Linq Like
Like的操作,有点像in,但是,方向变了。什么意思呢。就是你给定一个字符串,去寻找数据中某个字段包含这个字符串。就是给定的字符串是某字段的子集。Sql Script是这么写的。Selec * from table where id like '%AD%'Selec * from table whe...
分类:其他好文   时间:2015-12-04 10:50:37    阅读次数:208
序列中找子序列的dp
题目网址:http://codeforces.com/problemset/problem/414/BDescriptionMashmokh's boss, Bimokh, didn't like Mashmokh. So he fired him. Mashmokh decided to go t...
分类:其他好文   时间:2015-12-03 20:38:35    阅读次数:158
About Interface
http://www.codeproject.com/Articles/18743/Interfaces-in-C-For-Beginners Interface can't have things like int x; All interface defined function must be...
分类:其他好文   时间:2015-12-03 13:35:00    阅读次数:111
mysql 数据库字符串替换
UPDATE `table_name` SET `field_name` = replace (`field_name`,'from_str','to_str') WHERE `field_name` LIKE '%from_str%' table_name —— 表的名字 field_na...
分类:数据库   时间:2015-12-03 09:52:19    阅读次数:192
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!