码迷,mamicode.com
首页 > 数据库 > 详细

SQL for beginner

时间:2014-10-08 14:08:05      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   for   数据   sp   div   art   c   

 
创建表和数据插入
create table,
insert into ... values()
简单select查询
select
合计与标量
count, avg, max, min, sum
ucase, lcase, substring, len, round
 
select * from ItemMasters
-- Aggregate
-- COUNT() -> returns the Total no of records from table , AVG() returns the Average Value from Colum,MAX() Returns MaX Value from Column
-- ,MIN() returns Min Value from Column,SUM()  sum of total from Column
Select Count(*)  TotalRows,AVG(Price) AVGPrice
,MAX(Price) MAXPrice,MIN(Price) MinPrice,Sum(price) PriceTotal 
FROM ItemMasters
 
-- Scalar 
-- UCASE() -> Convert to  Upper Case  ,LCASE() -> Convert to Lower Case,
-- SUBSTRING() ->Display selected char from column ->SUBSTRING(ColumnName,StartIndex,LenthofChartoDisplay)
--,LEN() -> lenth of column date,
-- ROUND()  -> Which will round the value
SELECT  UPPER(Item_NAME) Uppers,LOWER(Item_NAME) Lowers,
SUBSTRING(Item_NAME,2,3) MidValue,LEN(Item_NAME) Lenths 
  ,SUBSTRING(Item_NAME,2,LEN(Item_NAME)) MidValuewithLenFunction, 
   ROUND(Price,0) as Rounded
FROM ItemMasters
 
日期函数
其它 select函数
top, order by, distinct, 
Where子句
where in, where between, 
Group by 子句
 having
子查询
where
连接查询
join
Inner Join,Left Outer Join,Right Outer Join and Full outer Join
union合并查询
公用表表达式(with)
视图
pivot行转列
存储过程
函数function

SQL for beginner

标签:http   io   ar   for   数据   sp   div   art   c   

原文地址:http://www.cnblogs.com/yeyong/p/4010778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!