码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
游标+递归 查询 客户 子客户 查询财务信用
USE [CRM01]GO/****** Object: StoredProcedure [dbo].[Account3YearsTrade] Script Date: 07/15/2015 08:34:37 ******/SET ANSI_NULLS ONGOSET QUOTED_IDEN...
分类:其他好文   时间:2015-07-20 09:09:25    阅读次数:124
数据库 基础学习6— 查询 练习题
1 --drop database mydb 2 3 create database myDB 4 5 use myDB 6 7 create table Student--学生表 8 ( 9 Sno char(3) primary key not null,--...
分类:数据库   时间:2015-07-19 23:36:31    阅读次数:172
数据库查询Database中的表
public class UserDA { SqlConnection conn; SqlCommand cmd; public UserDA(Use uuu) { conn =new ...
分类:数据库   时间:2015-07-19 23:34:04    阅读次数:183
SQL server 45题
use mydbcreate table Student( Sno char(3) not null primary key, Sname char(8) not null, Ssex char(2) not null, Sbirthday datetime, Clas...
分类:数据库   时间:2015-07-19 23:22:46    阅读次数:157
SQL语句全解析
一、基本的建库、建表操作(增删改查略去不讲) --创建数据库School Create?database?School --使用数据库 Use?School --创建学生表(SID为自增主键,Ssex有Check约束,且所有字段,均不为空) create??t...
分类:数据库   时间:2015-07-19 20:17:48    阅读次数:159
jquery组件开发
一个简单的侧边栏导航组件。/** * Created by Px.T on 6/22/15. */(function($) { 'use strict'; $.fn.navBar = function(options) { var defaults = { menuData:...
分类:Web程序   时间:2015-07-19 19:56:34    阅读次数:162
SQL技术内幕二DDL
创建数据库:if db_id('DBTest') is nullcreate database DBTest创建表use eb_fy_data_test---use 切换所在数据库上下文 if object_id('UserTest','u') is not null drop TABLE User...
分类:数据库   时间:2015-07-19 19:27:50    阅读次数:152
leetCode 75.Sort Colors (颜色排序) 解题思路和方法
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers ...
分类:编程语言   时间:2015-07-19 18:08:48    阅读次数:152
SQL语句 还原未知逻辑名称数据库
1. 查看 SQL Server 2000 中 Northwind 数据库文件的逻辑文件名(logical file name)和物理文件路径(operation system file name):use Nothwindgoselect name, filename, * from dbo.sy...
分类:数据库   时间:2015-07-19 17:47:23    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!