[SQL疑难笔试题]1.select max(infoID)+1-min(infoID)-count(infoID) from Info 2. declare id int, select id=min(infoID) from Info declare ckid int declare ID_cursor cursor for sele...+阅读
1 IF OBJECT_ID('学生表')IS NOT NULL DROP TABLE 学生表 GO create table 学生表 --建立学生表. ( 学号 int not null , --学号,姓名,年龄,性别,家庭住址,联系电话 姓名 varchar(10) not null, --姓名 性别 varchar(2) 年龄 int, 联系电话 varchar(10), 家庭住址 varchar(50), 联系电话 varchar(20), check (性别 ='男' OR 性别='女'), ) 1.1 delete 学生表 insert 学生表 (学号,姓名,年龄,性别,联系电话,学历) values(1,"A",22,"男","123456","小学") insert 学生表 (学号,姓名,年龄,性别,联系电话,学历) values(2,"B",21,"男","119","中学") insert 学生表 (学号,姓名,年龄,性别,联系电话,学历) values(3,"C",23,"男","110","高中") insert 学生表 (学号,姓名,年龄,性别,联系电话,学历) values(4,"D",18,"女","114","大学") 1.2 update 学生表 set 学历='大专' where 联系电话 like '11%' go 1.3 delet 学生表 where 性别='女',姓名 like 'B%' go 1.4 select 姓名,学号 from 学生表 where 学历='大专',年龄
延伸阅读:
某公司SQL笔试题寻找答案第一道题是查看学生的姓名,选修的课程和对应的学分吧 select '姓名'=(select name from students_t where id=student_course_t.student_id ), '选修课程'=(select name from cou...
sql server笔试题求答案急!!!这套笔试题你想拿上100分,也该悬赏上100分。 输上基本上都有答案,看看SQL2005的书 create database STU --创建数据库 use login1 go create table STUDENT --建表 ( SNO char...
几道面试题求解 sql200915. 在web控件发生事件时,客户端采用提交的形式将数据交回服务端,服务端先调用Page_Load事件,然后根据传回的状态信息自动调用服务端事件自动传回是当我们在点击客户端控件时,采...
SQL数据库试题求解------------------------------------------------------ create table students(st_id varchar(20),st_name varchar(50),sex varchar(10)) insert into students(st_id,s...
SQL Server试题解答create database 订货管理 create table 仓库( S_id int primary key, S_city char(10), S_square int ) create table 职工( W_id int primary key, W_name char(10), W_sex...
求SQL题解试题如下解1:select * from tbName where id_no in(select id_no from tbName group by id_no having count(id_no)>1) 解2:select * into #tmpTb from tbName where id_no in(select...
sql简单试题懂得来问题一: Create table 运动员( 运动员编号 char(6) ___not null_____ primary key ____, 姓名 varchar(40), 性别 char(2)____constraint chk1 _ check(性别='男' or 性别='女'...
oracle面试题一个SQL语句求解SQL code--举例如下SQL>delete emp 2wherenotexists (select1from3 (select rownum rn,empno from emp) t 4where t.empno=emp.empno and t.rn in(2,5));已删除12行。SQL>sele...
一道软件测试面试题中的sql题目求解1. select * from student where score>80 and s_id in (select sid from student_class where c_id=(select c_id from class where c_name='一班')) 2. select c.c_name,女...