SQL约束主要有一下几种:NOT NULL,UNIQUE ,PRIMARY KEY,FOREIGN KEY,CHECK,DEFAULT
分类:
数据库 时间:
2014-09-01 17:13:03
阅读次数:
214
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:
其他好文 时间:
2014-09-01 12:15:43
阅读次数:
169
在使用SQL语句进行数据表插入insert操作时,如果表中定义了主键,插入具有相同主键的记录会报错: Error Code: 1062. Duplicate entry 'XXXXX' for key 'PRIMARY'(主键冲突) 这样我们只好检查主键是不是存在,若存在则更新,若不存在则插入。.....
分类:
数据库 时间:
2014-09-01 00:23:12
阅读次数:
242
1. copy standby control file from primary db to standby db and rename the file name and location in stdby db same as the primary db2. copy password fi...
分类:
数据库 时间:
2014-08-31 15:48:51
阅读次数:
382
Linq to SQL 简单增删改查用Linq大大减少了对数据库的一般操作所需的编码量。运行下面事例之前,首先建一个叫做Alien的数据库表。CREATE TABLE [dbo].[Aliens]( [Id] [int] IDENTITY(1,1) NOT NULL primary key, [Na...
分类:
数据库 时间:
2014-08-31 13:11:01
阅读次数:
241
一创建表createtablett1(idintprimarykey,c1INT);createtablett2(idintprimarykey,c2INT);insertintott1values(1,1),(2,2),(3,3),(4,4);insertintott2values(1,2),(2,2);二执行计划与问题mysql>explainEXTENDEDSELECTtt1.c1,(SELECTtt2.c2FROMtt2WHEREc2=10)FROMtt1,tt2;+--..
分类:
数据库 时间:
2014-08-29 02:59:17
阅读次数:
183
Description
Games Are Important
One of the primary hobbies (and research topics!) among Computing Science students at the University of Alberta is, of course, the playing of...
分类:
其他好文 时间:
2014-08-28 21:17:06
阅读次数:
318
--建库if exists(select * from sysdatabases where name = 'stuDB')drop database stuDBCreate database stuDBon primary( name = 'stuDB', filename = 'E:\work\...
分类:
数据库 时间:
2014-08-27 18:00:58
阅读次数:
340
ALTER proc [dbo].[usp_EmailLongRunningSQL]
as
begin
declare@LongRunningQueries AS TABLE
(
lrqId int IDENTITY(1,1) PRIMARY KEY,
spid int NULL,
batch_duration bigintNULL,
program_namenvarchar(50...
分类:
数据库 时间:
2014-08-27 12:58:07
阅读次数:
295
一、表操作语法差异 在建表的时候,只有自增的语法不同。 主键(PRIMARY KEY)、外键(FOREIGN KEY)、非空(NOT NULL)、唯一(UNIQUE)、默认值(DEFAULT)都相同,自增实现的方式不同。 下面给出3种数据库通用的建表与初始化测试语句:CREATE TABLE ...
分类:
数据库 时间:
2014-08-26 21:08:06
阅读次数:
271