PHP+mysql常用类库】的更多相关文章

<?php /** * @title: Ekcms mysql类库 * @version: 1.0 * @author: perry <perry@1kyou.com> * @published: 2013-10-2 */ //数据库连接类 class mysql { var $ConnStr; function __construct(){ $this->connect(); $this->selectdb(); } //连接数据库服务器 function connect(…
Mysql 常用 SQL 语句集锦 基础篇 //查询时间,友好提示 $sql = "select date_format(create_time, '%Y-%m-%d') as day from table_name"; //int 时间戳类型 $sql = "select from_unixtime(create_time, '%Y-%m-%d') as day from table_name"; //一个sql返回多个总数 $sql = "select…
MySQL常用命令和常见问题 --创建数据库并设置字符集 create database wip default character set utf8 collate utf8_general_ci; -- 查看字符集变量 show variables like 'character%'; -- 备份数据库test到文件test.sql mysqldump -uroot -pmax123 test > test.sql -- 恢复数据库 mysql -uroot -pmax123 test <…
java的人应该都知道Apache commons的java常用类库吧,这个Guava和commons一样,封装出一套比jdk本身提供的常用类库强大.既然有了这个这么强大的类库,我们就没必要重复造轮子了.这东西怎么用,看看官网的文档和API.英文不好的,也有网上翻译出来共享的.开始Guava之旅猛击下面的链接 官方地址:http://code.google.com/p/guava-libraries/  [大家都知道这个要FQ哦,windows下推荐ziyoumen软件] 官方翻译文档:http…
mysql常用操作 查看都有哪些库 show databases; 查看某个库的表 use 库名; show tables; 查看表的字段 desc 表名; 当前是哪个用户 select user(); 查询所有用户 select user,host from mysql.user; 当前库 select database(); 创建库 create database db1; 创建表 create table tb1 (`id` int(4), `name` char(40)); 查看建表语句…
mysql 常用的sql语句 1.查看数据库各个表中的记录数 USE information_schema; SELECT table_name,table_rows FROM tables WHERE TABLE_SCHEMA = 'testdb' ORDER BY table_rows DESC;…
mysql常用操作语句 1.mysql -u root -p   2.mysql -h localhost -u root -p database_name 2.列出数据库: 1.show databases; 3.选择数据库: 1.use databases_name; 4.列出数据表: 1.show tables; 5.显示表格列的属性: 1.show columns from table_name;   2.describe table_name; 6.导出整个数据库: 1.mysqldu…
Mysql 常用 SQL 语句集锦 基础篇 //查询时间,友好提示 $sql = "select date_format(create_time, '%Y-%m-%d') as day from table_name"; //int 时间戳类型 $sql = "select from_unixtime(create_time, '%Y-%m-%d') as day from table_name"; //一个sql返回多个总数 $sql = "select…
一. MySql常用数据类型 数据类型:整数(tinyint smailint int bigint) 定点数 decimal(p,s) ------ 小数点位置固定的       ---> 数据精度得到保证 浮点数 float(p,s) 4字节  double(p,s) 8字节 ----- 小数点位置不固定    ---> 表示的范围更大 日期时间 date - 某年某月某日 time - 一天中的具体时间,或者两个时间的间隔.可能大于24, 也肯能为负. datetime - 日期+时间…
函数中可以将字段名当作变量来用,变量的值就是该列对应的所有值:在整理98在线字典数据时(http://zidian.98zw.com/),有这要一个需求,想从多音字duoyinzi字段值提取第一个拼音作为拼音pinyin字段的值,如:duoyinzi(ā,á,ǎ,à,a),想提取ā作为pinyin的值:数据有好几万条,不想用程序一条条处理,只想用一个sql来实现,后来了解了下MYSQL常用内置函数,是可以做到的:sql:UPDATE ol_zidian set pinyin=LEFT(duoyi…