循环插入一个记录 
 字段名     userid          username      age     tall        address
                      1                 a               20     12         中国
                      2                 b               24     34         中国
                      3                 c                34     23        美国
                      4                 d               34      23         日本
1.在m_suer 表中循环插入 记录。。。一直到i=10 位置
declare @i int 
declare @j int
select @i=4
while @i<10
begin
insert into m_user(username,age,tall,address) values('bigdachun',@i,'uu','上海闵行区故美七村35号402室')
select @i=@i+1
end 
2.显示 显示所有记录。。当address  是 ‘日本’  username  改为 ‘王八蛋’ 显示
use database
select  username= case when addrsss='日本'  then '王八蛋' end from m_user