-
插入记录查看全部
-
比较运算符号查看全部
-
goodnote查看全部
-
查看数据表查看全部
-
日期和时间类型查看全部
-
不同类型的整形查看全部
-
修改数据库查看全部
-
MySQL语句的规范: 1.关键字与函数名称全部大写 2.数据库名称、表名称、字段名称全部小写 3.SQL语句必须以分号结尾查看全部
-
MySQl常用命令; 1.显示当前服务器版本: SELECT VERSION(); 2.显示当前日期时间:SELECT NOW(); 3.显示当前用户L:SELECT USER();查看全部
-
delimiter // create procedure sp16(in p_age smallint unsigned,out deleteusers smallint unsigned,out usercounts smallint unsigned) begin delete from users where age=p_age; select row_count() into deleteusers; select count(id) from users into usercounts; end // delimiter ; call sp16(23,@w,@g); select @w,@g;查看全部
-
create procedure sp2121(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 // call sp2121(22,@wg)// select @wg//查看全部
-
整型类型查看全部
-
delimiter // create procedure sp121(in p_id int unsigned) begin delete from users where id=p_id; end // delimiter ; call sp121(22);查看全部
-
ACID 原子性、一致性、隔离性,持久性查看全部
-
alter table user add id smallint unsigned alter table user constrant pk_user_id primary(id) ;;添加主键 添加唯一约束 alter table user add unique(username) 添加外键约束 alter table user add foreign (pid)reference provinces(id); user , provinces 为两个表 默认约束 alter table user add age tinint unsigned not null alter table user age set default 15 设置默认值为15查看全部
举报
0/150
提交
取消