用 putty连接数据库:mysql -uroot -p密码创建数据库:create database
dbname charset utf8;导入数据库 .sql文件, 把 .sql 文件放到 cenots,如下放在 /var/www/html/ 下source
/var/www/html/dat...
分类:
其他好文 时间:
2014-05-26 02:25:03
阅读次数:
234
涉及java对象涉及到多个对象相互引用,要尽量避免使用一对多,或多对多关系,而应使用多对一描述对象之间的关系(或使用延迟加载的方式)。下个例子employee是多,而department是一
的关系sql语句 1 create table department_table( 2 id int...
分类:
编程语言 时间:
2014-05-26 01:27:45
阅读次数:
416
一对一关系中 从表的主键是 主表的外键sql语句1 create table person(2
id int primary key,3 name varchar(100)4 );5 create table idcard(6 id int primary
key,7 ...
分类:
数据库 时间:
2014-05-26 01:26:33
阅读次数:
331
多对多关系 需要建立一张新表存放它们的对应数据sql语句 1 create table
teacher( 2 id int primary key, 3 name varchar(100), 4 money float(8,2) 5 ); 6
create table stu...
分类:
数据库 时间:
2014-05-26 01:24:04
阅读次数:
461
In this article let us see how to create
Context Menu in Windows Forms application using C#IntroductionIn this article we
will see how to create Conte...
分类:
移动开发 时间:
2014-05-26 01:00:30
阅读次数:
555
1、用SYS用户以SYSDBA身份登录SQL
Plus,使用DBA_USERS视图查看用户信息:SELECT USERNAME, ACCOUNT_STATUS, CREATED FROM
DBA_USERS;--用户名,账户状态,创建用户的日期2、创建用户、删除用户CREATE USER IDEN....
分类:
数据库 时间:
2014-05-26 00:56:24
阅读次数:
334
I try the one of your approach, it works well
in my computer. Below is my code: public void AddContextMenu() { ContextMenu
mnuContextMenu = new Con...
分类:
其他好文 时间:
2014-05-26 00:36:55
阅读次数:
266
先吐个槽,到目前为止接触的东西也就是些ado.net、select、delete、update、create、临时表的批量操作、及稍微复杂点的几个表之间查询再带几个excel导入导出然后会点前端的js、jquery等,所以在公司目前薪水并不高(能在广州生活下去吧,什么买车买房的想都别想),拿自己.....
分类:
其他好文 时间:
2014-05-25 23:36:30
阅读次数:
298
索引、实体化视图、簇、散列簇、序列、同义词1、创建表CREATE TABLE (
,……);CREATE GLOBAL TEMPORARY TABLE ( ,……) ON COMMIT DELETE ROWS TABLESPACE
;--创建事务级临时表,事务提交后删除临时表中数据CREATEGLO...
分类:
数据库 时间:
2014-05-25 23:25:14
阅读次数:
455
Methods to create a databaseWith DBCA, a
graphical toolWith Create Database Statement准备工作l Table和Index所需要的空间大小l 数据库文件的分布,
使用Oracle Managed Files and A...
分类:
数据库 时间:
2014-05-25 03:16:41
阅读次数:
344