(9)
(9)
发布时间:2013-07-22 21:50:44
mysql中的if语句
if ... then ...
elseif .... then ...
else....
end if
循环语句
while ....
end while
repeat
....
until ... end repeat
loop
...
end lop
......
发布时间:2013-07-19 21:58:53
局部变量 declare
全局变量 @a
set @a = 10; 直接赋值
set @a := 'zhoudian';
select @c := 'abc'; 打印并赋值
select @@version;
@@开头是mysql已经定义好的一些变量。
drop procedure if exists sp1;
delimiter //
create procedure sp1(a int, b varchar(32))
begin
sql语句
end //
delimiter ;......
发布时间:2013-07-19 21:51:40
sql语句
ddl,数据定义语言,create alter drop
dml,数据操作语言,insert delete update select
dcl,数据控制语言,grant deny revoke
根据已有表创建
create table t1 like dept; 包含主建和索引
create table t2 select * from detp ; 同时导入了数据
inner join, left join, right join
......
发布时间:2013-07-19 21:46:01
cmake \
-dcmake_install_prefix:path=/usr/local/mysql56 \
-dmysql_datadir:path=/database56 \
-dwith_debug:bool=on \
-dwith_extra_charsets:string=all \
-dwith_innobase_storage_engine:bool=on \
-dwith_partition_storage_engine:bool=on
make && make install......
发布时间:2013-07-19 21:40:56
精确的数值类型
int decimal numeric
浮点型
float double
日期时间
datetime date time
字符串
char varchar
枚举
enum('y','m')
......