首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

select * from authors where au_id is not null 存储过程怎么写

2012-01-13 
select * from authors where au_idisnot null 存储过程如何写?select * from authors where au_idisnot n

select * from authors where au_id is not null 存储过程如何写?
select * from authors where au_id is not null and au_lname is not null and au_Phone is not null and city =传进来的条件
如果au_id au_lname au_Phone 用户输入而改变怎么写?

[解决办法]

SQL code
CREATE proc Authors@au_id int(4),@au_lname varchar(10),@au_Phone varchar(20)asdeclare @sql varchar(8000)select * from authors where @au_id  is  not null and @au_lname is not null and @au_Phone is not null and  cityexec(@sql)GO
[解决办法]
mark

热点排行