先做事后做人

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  SQL

摘要:1.SQL statements are not case sensitive. SELECT is the same as select. 2. SELECT Statement Syntax: SELECT column_name(s) FROM table_name SELECT LastName,FirstName FROM Persons SELECT * FROM Perso... 阅读全文
posted @ 2006-04-07 17:58 asdfasdf 阅读(1161) 评论(0) 推荐(0)

摘要:1.What is SQL SQL is an ANSI (American National Standards Institute) standard computer language for accessing and manipulating database systems. SQL statements are used to retrieve and update data in ... 阅读全文
posted @ 2006-04-07 17:48 asdfasdf 阅读(324) 评论(1) 推荐(0)

摘要:Transact-SQL overview Author:Rob Taylor Transact-SQL Author:Rob Taylor What is Transact-SQL?Transact-SQL,also called T-SQL,is Microsoft's exension to the ANSI SQL language.It is the dri... 阅读全文
posted @ 2006-03-15 14:24 asdfasdf 阅读(240) 评论(0) 推荐(0)

摘要:sql基础(一) sql基础 1.什么是关系型数据库. 1.1.优点: 1.容易使用 2.可以在同一时间使用. 3.可以随时间更改.添加,插入,删除等操作. 1.2.数据存储在表中. 对关系数据库而言,所有的数据都存储在表中,表由列(字段)和行(记录)组成.1.3.使用主键列识别每一个行. 大部分表都包含一个主键,它识别了表中的每一个行,并给... 阅读全文
posted @ 2006-03-15 14:07 asdfasdf 阅读(220) 评论(0) 推荐(0)