易截截图软件、单文件、免安装、纯绿色、仅160KB

sql语句基本操作

1.建表语句:create table
用法: create table 表的名字 (字段1, 字段2,。。。。)
举例:例如创建一个学生成绩表,包含的字段有,学生id,姓名,性别,班级,成绩create table score(
create table score(
 sid nvarchar(10) primary key,
 sname nvarchar(10) not null,
 sex nvarchar(2),
 sclass nvarchar(5),
 score int,
 check(sex in('男','女'))
);
2.插入语句:insert into
用法:insert into 表的名字 (字段1, 字段2,。。。。) values (值1,值2,。。。。)
如果字段是表中所有字段字段列表可省去,直接写表名就行了
举例:往表score中插入7条数据
insert into score values('95002','小李','男','01',82)
insert into score values('95003','小丽','女','01',83)
insert into score values('95004','小赵','男','01',67)
insert into score values('95005','小美','女','01',78)
insert into score values('95006','小田','男','01',88)
insert into score values('95007','小徐','女','01',85)
insert into score values('95008','小王','男','01',86)
 3.查询语句:select
用法:select 字段 from 表名 where 条件
字段间用','分开,同样如果选择表的所有字段,可用通配符*
举例:输出score表中成绩在60到80的同学的所有信息
select * from score where score>=60 and score<=80
输出score 表中成绩为85或86或87的学生信息
select * from score where score=85 or score=86 or score=87
输出score 表中班级为95001或者性别为女性的学生的名字
select sname from score where sclass='95001' or sec='女'
4.删除语句:delete
用法:delete from 表的名字 where 条件
举例:删除score表中分数低于70分的记录
delete from score where score<70


相关文档:

今天装了Oracle SQL developer

下载后解压缩就能直接使用了,但是是中文的,字体显示的不是很好,于是找到了换英文的办法:
由于1.5包含了多语言界面的支持,但是它是通过JVM来辨认系统语言的,所以当你的系统语言为中文的时候,它会使用中文界面。不过它的中文翻译并不完整,加上默认界面字体太小,使用中文会看着非常难受。如果想使用英文界面,需要修 ......

批量生成同类型sql语句的脚本

--在日常维护,开发中常遇到写一系列结构类型的sql语句,很烦很累其实可以
--利用SQL*PLUS环境命令  生成脚本文件
        set heading off   --关闭列的标题
        set feedback off  --关闭反馈信息
    ......

用sql获取某字符串中的数字部分

create function dbo.F_Get_No
(
 @No varchar(100)
)
RETURNS bigint
AS
BEGIN
 WHILE PATINDEX('%[^0-9]%',@No)>0
 BEGIN
  SET @No=STUFF(@No,PATINDEX('%[^0-9]%',@No),1,'') --删掉一个非数字的字符,循环结束,剩余的为数字部分
 END
 RETURN CONVERT(bigint,@No ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号