Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #22.6K
~789 People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for severman

INVOICE(invoice_id, client_id,item_id) CLIENTS(id, client_name) ITEM(item_id, item_name) i want 1 table that shows: invoice_id, client_name,item_name select i.invoice_id ,c.client_name,it.item_name from invoice i, client_name c,item_name it where (i.client_id = c.client_id) AND (i.item_id = it.item_id)

Member Avatar for mrahil2008
0
170
Member Avatar for m_shanak
Member Avatar for hamoud
Member Avatar for darkdai
-1
82
Member Avatar for Obelisk4

INSERT INTO EMPLOYEE VALUES ('John', 'B', 'Smith', 099999781, '09-JAN-65', 731 Fondren Houston TX', 'M', 30000, 333445555, 5); INSERT INTO EMPLOYEE VALUES ('John', 'B', 'Smith', 099999781, '09-JAN-65', '731 Fondren Houston TX', 'M', 30000, 333445555, 5);

Member Avatar for karant
0
199
Member Avatar for RicardoE

If Test is the name oof your table having following columns REC_TEST Id_Customer Id_Apply then ALTER table Test MODIFY COLUMN Id_Customer VARCHAR2(4) alter table test add constraint test_id_ck check(Id_Customer in ('YES','NO') this will surely help u

Member Avatar for karant
0
112
Member Avatar for MARKAND911

select trunc(to_date('01-SEP-2007')-to_date('22-JUN-2007')) as "days between dates" from dual; kiran

Member Avatar for karant
0
104

The End.