
DataBase
zhouxianglh
这个作者很懒,什么都没留下…
展开
-
SQL2005 回顾
set statistics time on--开启客户端分析 on/off set nocount on--不返回计数 on/off set statistics profile off--用于分析SQL 语句 on/off use master go if exists(select * from sysdatabases where name = 'msstudy') dr...2010-03-11 22:23:50 · 106 阅读 · 0 评论 -
Oracle 10G 基本操作(1)
C:Documents and SettingsAdministrator>sqlplus SQL*Plus: Release 9.0.1.0.1 - Production on 星期一 2月 16 17:26:46 2009 (c) Copyright 2001 Oracle Corporation. All rights reserved. 请...2010-03-15 21:40:49 · 212 阅读 · 0 评论 -
服了某些人,MYSQL安装小结
真是服了某些人,人材! 以前用别人的MYSQL服务器,今的自己也装了一个.家里已经装了一个,这个是小Case 了.这次不同的是出了一点小插曲,cmd 下 net start mysql 说 "net"不是内部或外部命令..... ,同时help 也不可用了,上网找了一下,环境变量这块出了问题. 加上了 %SystemRoot%\System32\; 就好了. 装完后发现位...2009-12-23 15:28:26 · 140 阅读 · 0 评论 -
Oracle 学习笔记
select * from user_tables; drop table t_user_role; drop table t_user; drop table t_role; drop sequence user_seq; create sequence user_seq--建立序列(自动增长列) increment by 1 --自增系数 start with 1 --初始值...2010-04-11 23:50:03 · 147 阅读 · 0 评论 -
mysql 5.1 学习笔记
drop database if exists mysqlstudy; create database if not exists mysqlStudy; use mysqlstudy; create table t_user( userid int AUTO_INCREMENT, userName varchar(20), primary key (userid) ...2010-03-03 17:14:55 · 115 阅读 · 0 评论 -
HSQL JDBC操作
HSQL操作2013-07-09 10:56:55 · 295 阅读 · 0 评论