SQL Server中主外键的定义:1.create table dept(dept_no int primary key,dept_name nvarchar(50) not null)insert into dept values(10,'IT'),(20,'Finance'),(30,'Eng...
分类:
数据库 时间:
2014-07-22 22:56:53
阅读次数:
176
INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1;INSERT 中 ON DUPLICATE KEY UPDATE的使用如果指定了ON DUPLICATE KEY UPDATE,并且插入行后会导致在一个UN....
分类:
数据库 时间:
2014-07-19 14:13:42
阅读次数:
261
1.修改 ip地址 子网掩码 默认网关
netsh interface ip set address "本地连接" static 192.168.1.23 255.255.255.0 192.168.1.1
2.修改DNS
netsh interface ip set dns "本地连接" static 192.168.1.1 primary
3.自动获取ip地址
netsh inter...
分类:
其他好文 时间:
2014-07-19 02:46:16
阅读次数:
224
AlwaysOn group的一个新特性是允许在secondary replica进行backup,将backup的负载从primary replica上移除去。 并且提供了Backup preference选项,用于在AlwaysOn Availability Group环境下对备份进行管理。需要...
分类:
其他好文 时间:
2014-07-18 21:20:36
阅读次数:
170
分享下mysql中如何把主键定义为自动增长标识符类型。1、把主键定义为自动增长标识符类型在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:create table customers(id int auto_increment primary key...
分类:
数据库 时间:
2014-07-18 21:20:02
阅读次数:
244
SQL Server中有五种约束类型,分别是 PRIMARY KEY约束、FOREIGN KEY约束、UNIQUE约束、DEFAULT约束、和CHECK约束。查看或者创建约束都要使用到 Microsoft SQL Server Managment Studio。
1. PRIMARY KEY约束
在表中常有一列或多列的组合,其值能唯一标识表中的每一行。这样的一列或多列成为表的主键(Primar...
分类:
数据库 时间:
2014-07-18 17:03:18
阅读次数:
359
In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of methods in the java api. After investiagting the document of java api, the result is so satisfying that...
分类:
编程语言 时间:
2014-07-18 14:02:00
阅读次数:
282
1、复制表结构及数据到新表CREATE TABLE 新表SELECT * FROM 旧表这种方法会将oldtable中所有的内容都拷贝过来,当然我们可以用delete from newtable;来删除。不过这种方法的一个最不好的地方就是新表中没有了旧表的primary key、Extra(auto...
分类:
数据库 时间:
2014-07-18 00:07:21
阅读次数:
261
SQL Server主键的写法:--列级create table dept(dept_no int primary key,dept_name nvarchar(20) not null)--表级create table dept(dept_no int not null,dept_name nva...
分类:
数据库 时间:
2014-07-17 23:36:30
阅读次数:
400
1.配置/etc/network/interfaces#静态IP地址1 auto lo 2 iface lo inet loopback #loopback虚拟网络设备,使TCP/IP能以127.0.0.1这个IP地址访问你电脑本身3 # The primary network interface ...
分类:
其他好文 时间:
2014-07-17 23:14:15
阅读次数:
308