SQL以及数据库
文章平均质量分 64
sun418756752
这个作者很懒,什么都没留下…
展开
-
SQL 注入有常用语句
是否支持多句查询http://www.xxx.com/xxxnews/shownews.asp?id=51;declare @a int-- 是否支持子查询http://www.xxx.com/xxxnews/shownews.asp?id=51 and (Select count(1) from [sysobjects])>=0返回用户名http://www.xxx.com/xxxnews/sh原创 2005-10-14 19:19:00 · 3393 阅读 · 0 评论 -
数据库主键,外键,关系,级联保存、更新、删除
--建立数据库create database test;go--建立表customerscreate table customers(id int identity(1,1) not null,name varchar(15),age int,primary key(id));go--建立表orderscreate table orders(id int identity(1,1) not nul原创 2006-09-21 12:17:00 · 4950 阅读 · 0 评论 -
SQL查询语句使用
SQL查询语句使用(来原于网络,增加了“连接查询”的比较和相互之间的转换。——陈德辉,2006.6.2)一、简单查询 简单的Transact-SQL查询只包括选择列表、FROM子句和WHERE子句。它们分别说明所查询列、查询的 表或视图、以及搜索条件等。 例如,下面的语句查询testtable表中姓名为“张三”的nickname字段和email字段。SELECT nickname,email F原创 2006-06-02 16:49:00 · 2989 阅读 · 0 评论 -
1次插入多条记录的方法(SQL语句,在MS SQL Server 2000查询分析器中执行成功)
1次插入多条记录的方法:1)、select * into myTest from kucunhw此方法从表kucunhw把数据插入另外一张新表myTest,缺点:只能执行一次,如果要多次执行,必须新删除表myTest,然后再插入(实际上相当于1次插入)2)、insert into myTest(shangpinbm,shangpinmc) select shangpinbm,shangpinmc原创 2006-07-11 15:40:00 · 25227 阅读 · 3 评论 -
子查询选择、更新、删除 1条记录
1)、查找authors表的第七条记录:SELECT * FROM authors order by au_idselect top 1 * from authors where au_id not in (select top 6 au_id from authors order by au_id)2)、在 DELETE 和 SELECT 中使用 TOP 子句由于可以在 DELETE 语句中原创 2006-07-12 10:46:00 · 2549 阅读 · 0 评论 -
表的连接操作
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------select * from authors--23条se原创 2007-08-04 18:57:00 · 1588 阅读 · 0 评论