外文数据库检索有哪些?
外文数据库检索有:
1、Springer Link(综合学科期刊全文) 对研究生而言,是很常用的一个数据库。
2、Elsevier综合学科期刊全文) 全球最大的科学文献出版发行商,涵盖科学、技术和医学等。
3、Proquest学位论文全文数据库(CALIS) 收录200多万国外高校博硕士论。
4、EBSCO (辽师提供,涉及教育、经济、人文等)。
怎么从数据库判断一篇论文是期刊还是会议论文?英语的,看不懂啊
- 我可以 原创给你
日语1级英语6级数据库三级都过了毕业之后能做什么,薪资大致多少
- 如题,现大四,今年6月毕业,现在在一家日企上班,实习3k。毕业之后跳槽出去,能从事什么啊,到手差不多多少啊,现在十分迷茫。。。求指点。。
- 证书不得不等于能力
谁有103976个英语单词库,或者其他英语单词数据库,103976个英语单词库(sql版),谢谢?
- download.csdn.net/download/oyipiantian/8332965 上面有,那木有积分,谢谢好心人
- 下嘛,我去下了!
新建数据库,三张表 学生表 ,成绩表,课程表(有以下课程:语文,数学,英语),目前有100个学生
- 要求:写一个存储过程,初始化成绩表给每个学生的每门课程成绩都插入一个成绩(此人此课程有成绩的话不用插入)(成绩随机产生0-100),注意事务的使用下面是代码use mastergoif exists(select * from sysdatabases where name=STU)drop database STUgocreate database STUgouse STUgoif exists(select * from sysobjects where name=student)drop table studentgocreate table student(stuId int identity(1001,1) primary key, stuName varchar(50),sex nchar(1) default(女) ,stuNo varchar(50) unique,birthday datetime check(birthday 1970-1-1 and birthday 2000-1-1),remark text )gouse STUgoif exists(select * from sysobjects where name=Grade)drop table Gradegocreate table Grade(gId int identity(2001,1) primary key,courseName varchar(50),score float,stuId int references student(stuid))gouse STUgoif exists(select * from sysobjects where name=Course)drop table Coursegocreate table Course(gId int identity(3001,1) primary key,courseName varchar(50),stuId int references student(stuid))goif OBJECT_ID(up_init,p)is not nulldrop procedure up_initgocreate proc up_initas declare @stuName varchar(20)declare @stuNo varchar(20)declare @i intset @i=1while (@i=100)begindeclare @sex varchar(2)set @sex=男if(@i%2=0)beginset @sex=女endset @stuName=.NET +convert(varchar ,@i)set @stuNo=20141406+convert(varchar,@i-1)insert into student values(@stuName,@sex,@stuNo,1995-11-1,123)set @i=@i+1endgoexec up_initselect * from studentif OBJECT_ID(up_init,p)is not nulldrop proc up_initgocreate proc up_initas–*********************************–遍历每一个学生declare my_c cursor scrollfor select stuid from student–2.open my_c–3.declare @n int,@stuid int,@score floatset @n=1select @score=score from Gradebeginwhile (@n=@@CURSOR_ROWS)beginfetch next from my_c into @stuidinsert into Grade values(语文,RAND()*100,@stuid)insert into Grade values(数学,RAND()*100,@stuid)insert into Grade values(英语,RAND()*100,@stuid)set @n=@n+1end–4.close my_c–5.deallocate my_c———————————–go–调用******************************exec up_initselect * from Grade上面是代码 就是判断成绩表中是否存在成绩那里不会判断 求大神指点
- 很专业,不知道,对不起
android英语学习机有用户登录、背单词、音频、视频等功能,背单词功能用了SQLite数据库,现在要写论文。
- 请问有谁知道“系统需要解决的主要问题和关键技术”怎么写
- 你这个 很好写的 技术点 在于 音频 视频 和sqlite 这三点 从这三点 写应该就可以了
数据库表1(学号,语文成绩,数学成绩,英语成绩),表2(学号,总成绩)。怎么能让我们只输入
- 表1中3个成绩,表2就会自动生成总成绩
- 这是做VB吧,把代码输入就行了