这几句SQL语句是啥意思?

Posted

tags:

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

EXEC sp_configure 'clr enabled',1; RECONFIGURE WITH OVERRIDE; GO

参考技术A EXEC
sp_configure
'clr
enabled',1;
RECONFIGURE
WITH
OVERRIDE;
GO
具体解释如下:
EXEC
在SQL里面是用来执行"存储过程"的,系统存储过程一般以sp_开头,所以后面的是它要执行的系统存储过程,再后面的"clr
enabled","1"都是存储过程的的参数,不同的存储过程的参数可能不同.
RECONFIGURE
WITH
OVERRIDE;
RE是Repeat(重复)的缩写,
CONFIGURE是配置的意思,
WITH
是代表后面有先项,OVERRIDE是覆盖的意思.
这样看起来能明白了吧?呵呵...

SQL语句中&Sql是啥意思?

这句中:Sql = "select * from article where type_id = "&Data_Type&Sql
这个&Sql做什么用?
谢谢
偶是菜菜鸟

参考技术A &是且的意思,这句话的意思是 从article表中选择所有列,这些列满足type_id为Data_Type&Sql的值。Data_Type&Sql是一个表达式。
不过。。。感觉怪怪的。。。本回答被提问者采纳
参考技术B 你用的 是ORACLE的SQL 语句
set define &;
SQL> select * from emp where empno = &empno;
输入 empno 的值: 10
原值 1: select * from emp where empno = @empno
新值 1: select * from emp where empno = 10
&是缺省的符号
你也是可以改变的
如:set define $
SQL> select * from emp where empno = $empno;
按下会车后会提示你要输入的值是多少
输入:10
就变成了

原值 1: select * from emp where empno = @empno
新值 1: select * from emp where empno = 10
下面就是要查找的信息
参考技术C 定义:sql 语句就是对数据库进行操作的一种语言。 几个简单的基本的sql语句:  选择:select * from table1 where 范围   插入:insert into table1(field1,field2) values(value1,value2)   删除:delete from table1 where 范围   更新:update table1 set field1=value1 where 范围   查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)---like的语法很精妙,查资料!   排序:select * from table1 order by field1,field2 [desc]   总数:select count(*) as totalcount from table1   求和:select sum(field1) as sumvalue from table1   平均:select avg(field1) as avgvalue from table1   最大:select max(field1) as maxvalue from table1   最小:select min(field1) as minvalue from table1[separator] 参考技术D SQL是Structured Quevy Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言

以上是关于这几句SQL语句是啥意思?的主要内容,如果未能解决你的问题,请参考以下文章

SQL语句中&Sql是啥意思?

sql 语句中 符号是啥意思?

sql语句中caes是啥意思

sql语句里面的union是啥意思

sql语句中的groupby是啥意思?

sql语句中“where1=1”是啥意思?