skip to main
|
skip to sidebar
TechUpdate
Sunday, May 9, 2010
Primary key in oracle
CREATE TABLE emp_table
(
emp_id
numeric(10)
not null,
emp_name
varchar2(50)
not null,
company_name
varchar2(50),
CONSTRAINT emp_pk PRIMARY KEY (emp_id, emp_name)
);
No comments:
Post a Comment
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Blog Archive
▼
2010
(7)
▼
May
(7)
Primary key in oracle
How to Create a Table in Oracle
What is mutating trigger
What is pragma in oracle
Getting Oracle Database Size
Selecting second maximum salary of employee table
Difference between grep and find
No comments:
Post a Comment