摘要: 写出一条Sql语句: 取出表A中第31到第40记录(SQLServer, 以自动增长的ID作为主键, 注意:ID可能不是连续的。) 4. 解1: select top 10 * from A where id not in (select top 30 id from A) 解2: select top 10 * from A where id > (select max(id... 阅读全文
posted @ 2007-10-30 10:27 许晓光 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 2. 不定项选择: (1) 以下叙述正确的是: A. 接口中可以有虚方法。 B. 一个类可以实现多个接口。 C. 接口不能被实例化。 D. 接口中可以包含已实现的方法。 inheritance polymorphism encapsulation 1class A 2 { 3 4 public virtual ... 阅读全文
posted @ 2007-10-30 09:31 许晓光 阅读(509) 评论(0) 推荐(0) 编辑