随笔分类 - mysql
mysql日志
摘要:http://www.cnblogs.com/hustcat/archive/2009/12/19/1627525.html
阅读全文
摘要:--批量插入数据的sql语句delimiter $$DROP PROCEDURE IF EXISTS `test.sp_insert_batch` $$CREATE DEFINER =`root`@`localhost` PROCEDURE `sp_insert_atch`(IN number INT)BEGIN DECLARE i INT ; SET i = 1; #such as 1-2000,2000-4000, WHILE i '' THEN SET @sqltext = CONCAT('INSERT INTO song (name,da...
阅读全文
摘要:#登录数据库mysql -hlocalhost -uroot -p;#修改密码mysqladmin -uroot -pold password new;#显示数据库show databases;#显示数据表show tables;#选择数据库use examples;#创建数据库并设置编码utf8 多语言create database `examples` default character set utf8 collate utf8_general_ci;#删除数据库drop database examples;#创建表create table test( id int(10) uns...
阅读全文
摘要:#!/bin/bash#FileName:select_into_bak.sh#Desc:Use select into outfile to backup db or tables#Created By:fedoracle#Date:2012/04/24DB=mysqlUSER=testPASSWD=testHOST=192.168.164.129BAK_DIR=/data/mysql/backup/$DBDATE=`date "+%Y-%m-%d %H-%M-%S"`[ -d "$BAK_DIR" ] || /bin/mkdir -p $BAK_DI
阅读全文
摘要:ThisfunctionhasnoneofDETERMINISTIC,NOSQL解决办法创建存储过程时出错信息:ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)原因:这是我们开启了bin-log, 我们就必须指定我们
阅读全文
摘要:select * into myteacher from School..TblTeacher数据库..表名
阅读全文
摘要:myisam 与innodb的区别frm结构 fri索引 frd数据innodb:一个表一个文件:frm文件 所有的innodb表,都使用表空间储存,数据和索引的保存文件不同,myisam 分开保存,而innodb保存到表空间,Myisam 支持索引压缩,而innodb索引的数据是绑定保存不压缩,体积大, innodb很多时候是行级锁,而myisam是表级锁,innodb的并发高, innodb不支持FULLTEXT类型的索引, Innodb支持事务,外键,数据完整性约束要强,而MYISAM不支持,innodb中不保存表的具体行数,也就是说,执行select count(*) from tab
阅读全文
摘要:(1)查看数据库可以支持的存储引擎 命令:show engines; (2)查看表结构命令:desc table_name;(3)显示表的创建语句 show create table table_name; (4) 显示表的当前状态值show table status like 'table_name';(5) 修改数据表的引擎alter table table_name engine=MyISAM;.....续
阅读全文
摘要:我们都知道,只要合理正确使用PDO,可以基本上防止SQL注入的产生,本文主要回答以下两个问题:为什么要使用PDO而不是mysql_connect?为何PDO能防注入?使用PDO防注入的时候应该特别注意什么?一、为何要优先使用PDO?PHP手册上说得很清楚:Prepared statements and stored proceduresMany of the more mature databases support the concept of prepared statements. What are they? They can be thought of as a kind of co
阅读全文