P37

  初级SQL开发指南 文档

初级SQL开发指南 Select语句概要 数据库中数据的提取(查询)使用select 语法,主要有以下几点作用 l 提取的数据(搜索) l 提取的数据进行排序(排序) l 执行计算或汇总 Select文表达方法

zhtbs 2012-12-21   1632   0
SQL  
P

微软 SQL Server 7.0 文档

This is the definitive companion to Microsoft SQL Server 7.0. Ron Soukup and Kalen Delaney offer the joint perspective of the developer and the user in an extremely readable presentation. Ron led the SQL Server development team for a decade. Kalen has been working with the application designers and developers for almost that long. This is their guide to why SQL Server is the way it is and how it should be used. This book perfectly complements the reference material in SQL Server Books Online.<br> The book begins with the inside story of how the PC database giant Ashton-Tate partnered with Microsoft and then-startup Sybase to bring SQL to the OS/2 marketplace. The book goes on to trace the incredible history of the product and the partners. Ron and Kalen's firsthand account makes this a must-read. I cannot think of a more amazing story in our industry.

zsw19923 2015-02-02   1996   0
P

W3school SQL教程 文档

SQL 是用于访问和处理数据库的标准的计算机语言。在本教程中,您将学到如何使用 SQL 访问和处理数据系统中的数据,这类数据库包括:Oracle, Sybase, SQL Server, DB2, Access 等等。

liu5210310 2012-01-04   297   0
SQL  

jdbc sql server 连接串格式 代码段

e;password=*****;databaseName=testdb 如果是命名实例,链接方式如下: jdbc:sqlserver://localhost;instanceName=insta

907861361 2016-01-19   953   0
Java   JDBC   SQLServer  
P8

  android sql 查询操作语句大全 文档

database-name   删除数据库   drop database dbname   备份sql server   --- 创建 备份数据的 device   USE master   EXEC

mingrui520 2016-11-22   2407   0
P6

  性能调优-sql语句调优 文档

的操作(innodb引擎做这个 跟myisam引擎做这个不在同一个概念,所以对于总数据庞大分页的东西其实可以修改分页方式,比如搜索结果) PS: 无用功能堆积导致系统复杂 开发中经常会遇到做了的一些功能不需要啦,导致出

supreme26 2014-03-24   1949   0
SQL  
P41

  SQL Server设计、命名、编码规范 文档

SQL Server 设计、命名、编码规范 SQL Server Database Design, Code and Development Standards 1.更改 4 2.简介 4 3.开发环境

fuxiaolong 2014-06-07   2402   0
P15

  SQL SERVER DBCC 命令解释 文档

SQL SERVER DBCC命令解释 SQL SERVER DBCC命令解释     ------------------------------------------     --1 dbcc

finetsky 2014-08-07   1578   0
P9

  Oracle数据库常用SQL 文档

dual SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL>startup

opendoc001 2014-07-10   2241   0
P26

  常用SQL语句详解 文档

常用SQL语句详解 到今天为止,人们对关系数据库做了大量的研究,并开发出关系数据语言,为操作关系数据库提供了方便的用户接口。关系数据语言目前有几十种,具有增加、删除、修改、查询、数据定义与控制等完整

leihui0409 2011-08-07   3230   0
SQL  
P35

  PL/SQL 程序设计 文档

PL/SQL程序设计 主要内容:PL/SQL 语言的基本特征、PL/SQL程序的结构、PL/SQL语言的控制结构、游标(cursor)编程、错误处理、存储过程和函数、创建包(Package)、触发器(Trigger)。

wengsongwei8 2012-07-28   197   0
SQL  

SQL模板引擎:SqlTemplate 经验

遇到过动态拼接sql字符的同学,一定深知其中痛苦,我本人也其中受害者之一。SqlTemplate 是通过模板方法解决动态sql, 把模板内容构建成完成的xml,这样可以解析成相关的数据结构, 再结合Ognl强大表达式计算条件。

jopen 2013-11-13   25000   0

YAML和SQL的转换工具:Pyrseas 经验

PostgreSQL 的表的描述信息,yamltodb 工具用来从 YAML 文档直接转成建库的 SQL 语句。 项目主页: http://www.open-open.com/lib/vie

jopen 2013-11-27   11116   0

MyBatis的动态SQL详解 经验

MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑。 MyBatis中用于实现动态SQL的元素主要有: if choose(when,otherwise)

fmms 2012-01-09   237886   0

hadoop hive sql语法详解 经验

result, the operation is almost instantaneous. SQL 操作 按先件查询 hive> SELECT a.foo FROM invites a WHERE

openkk 2012-02-14   44168   0

SQL注入工具 Enema 经验

Enema 是一款 SQL 注入工具,它不是自动的,仅为知道如何使用的用户而准备。 软件要求: Python 3.2 PyQt4 pyodbc 主要特点: 特征: 多平台 图形化界面 多线程.

fmms 2012-04-04   22429   0
SQL  

HBase上使用SQL查询:Phoniex 经验

Phoniex 可以让开发者在HBase数据集上使用SQL查询。Phoenix查询引擎会将SQL查询转换为一个或多个HBase scan,并编排执行以生成标准的JDBC结果集,对于简单查询来说,性能甚至胜过Hive。

jopen 2013-02-19   22201   0

查看MySQL记录执行过的SQL 经验

第一种 : 查 Slow query 的 SQL 语法 : log_slow_queries = /var/log/mysql/mysql-slow.log long_query_time =

jopen 2014-08-14   64728   0
MySQL   SQL  

SQL的语法操作图片:pixQL 经验

pixQL 实现了一个用SQL的语法来对图像进行操作的工具。 实例用法: # turn all red pixels green pixql -i in.bmp -o out.bmp -q "SELECT

jopen 2015-07-01   7939   0
pixQL   SQL  

MyBatis直接执行SQL的工具SqlMapper 经验

可能有些人也有过类似需求,一般都会选择使用其他的方式如Spring-JDBC等方式解决。 能否通过MyBatis实现这样的功能呢? 为了让通用Mapper更彻底的支持多表操作以及更灵活的操作,在

jopen 2015-03-11   89226   0
1 2 3 4 5 6 7 8 9 10