SQL 语句中的With(index(0))

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 语句中的With(index(0))相关的知识,希望对你有一定的参考价值。

SELECT m.Member_No, m.FirstName, m.Region_No
FROM dbo.Member AS m WITH (INDEX (0))
WHERE m.FirstName LIKE 'K%'
AND m.Region_No > 6
AND m.Member_No < 5000
go
请问以上的with(index(0))是什么意义?还请顺便讲一下with(index(xxx))其他参数的意义。

强制使用找到的第一个索引.

其他数据库一般用force index(index_name)

http://blog.sina.com.cn/s/blog_49cc837a0100dpsv.html
参考技术A 如下:

[TEST@ORA1] SQL>with cr as(
2 select * from tab)
3 select * from cr;

TNAME TABTYPE CLUSTERID
------------------------------ ------- ----------
A TABLE
TEST TABLE

没有见过你的用法。
参考技术B 百度一下

SQL中使用WITH 语句的查询

--使用WITH 语句的查询
WITH Total_balance(branch_name,balance) AS
SELECT branch_name,SUM(balance)
FROM account
GROUP BY branch_name

WITH Avg_balance(balance) AS
SELECT AVG(balance)
FROM account
GROUP BY branch_name
为什么错啊?SQL 2005提示是

消息 156,级别 15,状态 1,第 3 行
关键字 'SELECT' 附近有语法错误。
消息 155,级别 15,状态 1,第 7 行
'Avg_balance' 不是可以识别的 GROUP BY 选项。

sql with as 用法(适用sqlserver,好像oracle也适用)

Server 2005中提供了公用表表达式(CTE),使用CTE,可以使SQL语句的可维护性,同时,CTE要比表变量的效率高得多。

下面是CTE的语法:
[ WITH <common_table_expression> [ ,n ] ]
< common_table_expression>::=
expression_name [ ( column_name [ ,n ] ) ]
AS
( CTE_query_definition )

现在使用CTE来解决上面的问题,SQL语句如下:

with
cr as
(
select CountryRegionCode from person.CountryRegion where Name like \'C%\'
)

select * from person.StateProvince where CountryRegionCode in (select * from cr)

其中cr是一个公用表表达式,该表达式在使用上与表变量类似,只是SQL Server 2005在处理公用表表达式的方式上有所不同。
在使用CTE时应注意如下几点:
1. CTE后面必须直接跟使用CTE的SQL语句(如select、insert、update等),否则,CTE将失效。如下面的SQL语句将无法正常使用CTE:

with
cr as
(
select CountryRegionCode from person.CountryRegion where Name like \'C%\'
)
select * from person.CountryRegion -- 应将这条SQL语句去掉
-- 使用CTE的SQL语句应紧跟在相关的CTE后面 --
select * from person.StateProvince where CountryRegionCode in (select * from cr)

2. CTE后面也可以跟其他的CTE,但只能使用一个with,多个CTE中间用逗号(,)分隔,如下面的SQL语句所示:
with
cte1 as
(
select * from table1 where name like \'abc%\'
),
cte2 as
(
select * from table2 where id > 20
),
cte3 as
(
select * from table3 where price < 100
)
select a.* from cte1 a, cte2 b, cte3 c where a.id = b.id and a.id = c.id

3. 如果CTE的表达式名称与某个数据表或视图重名,则紧跟在该CTE后面的SQL语句使用的仍然是CTE,当然,后面的SQL语句使用的就是数据表或视图了,如下面的SQL语句所示:
-- table1是一个实际存在的表
with
table1 as
(
select * from persons where age < 30
)
select * from table1 -- 使用了名为table1的公共表表达式
select * from table1 -- 使用了名为table1的数据表

4. CTE 可以引用自身,也可以引用在同一 WITH 子句中预先定义的 CTE。不允许前向引用。

5. 不能在 CTE_query_definition 中使用以下子句:
(1)COMPUTE 或 COMPUTE BY
(2)ORDER BY(除非指定了 TOP 子句)
(3)INTO
(4)带有查询提示的 OPTION 子句
(5)FOR XML
(6)FOR BROWSE

6. 如果将 CTE 用在属于批处理的一部分的语句中,那么在它之前的语句必须以分号结尾,如下面的SQL所示:
declare @s nvarchar(3)
set @s = \'C%\'
; -- 必须加分号
with
t_tree as
(
select CountryRegionCode from person.CountryRegion where Name like @s
)
select * from person.StateProvince where CountryRegionCode in (select * from t_tree)

7、CTE除了可以简化嵌套SQL语句外,还可以进行递归调用
参考技术A 楼主要先明白公用表表达式的用法,才不会出错,应该这样:
-------------CTE公用表表达式的使用方法
;WITH
Total_balance AS(
SELECT branch_name,SUM(balance) balance
FROM account
GROUP BY branch_name
)--每个CTE后面必须紧跟一条SELECT或UPDATE或DELETE得DML语句
SELECT * FROM Total_balance本回答被提问者采纳

以上是关于SQL 语句中的With(index(0))的主要内容,如果未能解决你的问题,请参考以下文章

SQL 语句“WITH”关键字中的语法错误

Ecto 子查询中的 SQL WITH AS 语句

Oracle PL/SQL CONNECT BY PRIOR ... SQL Server 中的 START WITH 语句

关于sql中的with(nolock)

SQL 中with的用法

SQL:with 查询