会员登录 | 会员注册 | 意见建议 | 网站地图

站长资源综合门户

当前位置:首页 > 站长学院 > 数据库 > MYSQL操作常用命令大全

MYSQL操作常用命令大全

时间:2012-08-16 20:39:15   作者:   来源:   点击:

--我们查询那些人所在的班级是编号为 1 的

select * from studio where exists(select cl_id from class where studio.cl_id=class.cl_id and class.cl_id=1)

--使用 not exists

select * from studio where not exists(select * from class where studio.cl_id=class.cl_id and class.cl_id=1) order by st_id

--基于查询生成新的表

select st_name into class_3 from studio where cl_id=3

--将数据批量插入一个表中

insert into class_3 select st_name from studio where cl_id=4

-----------------------sql 编程--------------

declare @max int;

--申明一个变量@max

set @max=1;

--为变量@max赋值

while @max<10

--如果@max小于10就进入循环

begin

set @max=@max+1;--每次循环就给@max加1

print @max;

--打印当前@max的值

end

print '终于循环完了';

分享到:

网友评论

推荐数据库

热门数据库