-
create procedure removeUserAndReturnUserNums(in p_id int unsigned,out userNums int unsigned) begin delete from users where id=p_id; select count(id) from users into userNums; end // delimiter ; 调用 call removeUserAndReturnUserNums(27,@nums); 这一过程删除id为27的记录,并且得到的记录数存储在@nums变量中 select @nums ; 查看@nums的值 set @i=7;设置用户变量,和mysql客户端绑定,只对当前用户使用的客户端生效,退出客户端用户变量自动释放 declare所申明的变量叫做局部变量,作用范围只在begin,and语句块之间,begin,and语句块运行完局部变量就消失查看全部
-
delimiter 修改结束符,(分隔符)procedure[prəˈsidʒɚ程序 delimiter // create procedure removeUserById(IN p_id int unsigned) begin delete from uses where id= p_id; end // delimiter ; call removeUserById(3)(删除id为3的记录)查看全部
-
insert into table_name select语句;查看全部
-
insert test select username from users3 where age>=30; 1、限制查询结果返回的数量:[LIMIT {[offset,] row_count|row_count OFFSET offset}] 2、默认返回所有结果,通过LIMIT可以限制其返回指定数量的记录 3、如SELECT * FROM users LIMIT 2,3; 偏移量为2,从第三条开始,返回3条结果 4、偏移量不是按照id等字段来排序,而是按照当前查询排序的方式顺序偏移查看全部
-
外键约束的参照操作: 1、CASCADE 2、SET NULL 3、RESTRICT 4、NO ACTION查看全部
-
1、分组条件:对一部分记录进行分组 2、语法:[HAVING where_conditon] 3、例如:SELECT * FROM users GROUP BY age HAVING age > 30; 4、要求where_condition中使用的条件字段,必须出现在查询结果里查看全部
-
group by {col_name |position} [asc|desc] ,.....\ select * from users group by sex ; select * from users group by 1;查看全部
-
create function f2(num1 smallint unsigned ,num2 smallint unsigned) returns float(10,2) unsigned return (num1+num2)/2;查看全部
-
md5():用作外部页面引用, password:用于更改密码,如set password = password(‘123’);查看全部
-
各种存储引擎的特点查看全部
-
事务的特性:原子性、一致性、隔离型、持久性查看全部
-
now():当前系统时间,包括日期和时间 curdate():当前的日期 curTime():当前的时间 select date_add('2014-3-12',interval 365 day); selelct datediff('2013-3-12','2014-30-12');:返回差多少天 date_format('2014-3-12','%m/%d/%Y');03/12/2014;查看全部
-
select users3.id,users3.username from users3;对于多张表很有必要加 users. select id AS userId,usersname AS uname from users3;赋予别名,as 前面是原来的后面的是新的查看全部
-
自动编号AUTO_INCREMENT 1、自动编号:保证记录的唯一性 2、类型必须为整型(可以说FLOAT(5,0)等,但不能是小数),必须和主键PRIMARY KEY组合使用 3、默认情况下,起始值为1,每次的增量为1 [ 查看全文 ]查看全部
-
1、删除记录DELETE:分为单表删除和多表删除 2、单表删除:DELETE FROM tbl_name [WHERE where_conditon]; 3、若不添加WHERE则删除【全部记录】查看全部
举报
0/150
提交
取消