上一页 1 ··· 15 16 17 18 19

2011年9月13日

css常用样式

摘要: css常用样式background: --在一个声明中设置所有的背景属性(如background: #00FF00 url(bgimage.gif) no-repeat fixed top;)background-color: --元素背景颜色background-image: --元素背景图像background-repeat: --是否及如何重复背景图像background-attachment: --是否固定或者随着页面的其余部分滚动background-position: --背景图像的起始位置border: --在一个声明设置所有的边框属性(如border:5px solid red 阅读全文

posted @ 2011-09-13 18:06 les_vies 阅读(311) 评论(0) 推荐(0) 编辑

2011年9月12日

SQL中的视图、存储过程与函数

摘要: SQL中的视图、存储过程与函数视图可以被看成是虚拟表或存储查询存储过程(Stored Procedure)是一组为了完成特定功能的SQL语句集(SQL语句和可选控制流语句) 经编译后存储在数据库中 用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它函数 存储过程执行的本质是一样的(但函数可以嵌入在sql中使用 可以在select中调用 存储过程则不行)表值函数与标量函数:前者只能返回一个表、后者则可以返回基类型存储过程create procedure AddStudent --定义存储过程@Name nvarchar(10),@Age int,@Bonus decimal. 阅读全文

posted @ 2011-09-12 12:43 les_vies 阅读(609) 评论(0) 推荐(0) 编辑

SQL常用语句

摘要: 表操作create table t_person1(id int not null,name nvarchar(50),age int null)drop table t_person1alter table t_person1 add department vchar(20)数据更新update Student set Name='李鹏' where Id=5update a set a.Bonus=500 from Student a inner join Gender b on a.Gender=b.Id where b.GenderName='男'upd 阅读全文

posted @ 2011-09-12 00:01 les_vies 阅读(424) 评论(0) 推荐(1) 编辑

上一页 1 ··· 15 16 17 18 19

导航