在WITH
或Common Table Expressions
功能中,tsql
使用Standard SQL
的地点多于CTE
吗?
我问的原因是,我想知道在WITH
WITH
之前的声明中强制执行分号的原因是什么。
我假设分号是为了帮助解析器,特别是如果在多个上下文中使用RewriteEngine on
# Redirect to forums subdomain
RewriteCond %{HTTP_HOST} ^test\.my-site\.com$ [NC]
RewriteRule ^forums/(.*)$ http://forums.my-site.com/$1 [NC,R=302,NE,L]
# Rewrite from forums subdomain to forums folder
RewriteCond %{HTTP_HOST} ^forums\.my-site\.com$ [NC]
RewriteRule ^(.*)$ /forums/$1 [NE,L]
,或者他们计划在多个上下文中使用它。 / p>