User Profile

Collapse

Profile Sidebar

Collapse
Sandya
Sandya
Last Activity: Mar 12 '08, 05:54 AM
Joined: Apr 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Sandya
    replied to Top 10 Rows
    v can use top in sqlserver 2000
    but it is not possible in oracle


    it vl fetch u data of top 10 elment

    select columname from tablename group by rownum ,column name
    having rownum >enter the rownum above which u want
    order by rownum ,colum name desc...
    See more | Go to post

    Leave a comment:


  • Sandya
    replied to To retrive data in two tables
    u can find the common field in the two table and use join to fetch the data from two table...
    See more | Go to post

    Leave a comment:


  • Sandya
    replied to i have problem with store procedure
    U cant u use check in select statement ............... It is used while creating table or altering the table to add constraint

    u need to modify like this


    CREATE or REPLACE PROCEDURE add_order (vorderid IN number, vstoreid IN number, vcustomerid IN number, vorderdate IN date, vshipperid IN varchar)
    AS
    Newshipperid varchar(10);
    BEGIN
    If newshipperid = (select shipperid from RAHorders...
    See more | Go to post

    Leave a comment:


  • Sandya
    replied to Top 10 Rows
    /* it fetch u top 10 elements */
    select top 10 column name from table name order by column name desc

    /it vl fect u bottom 10 elements */
    select top 10 column name from table name order by column name asc...
    See more | Go to post

    Leave a comment:


  • Sandya
    replied to Top 10 Rows
    select top 10 column name from table name...
    See more | Go to post

    Leave a comment:


  • Sandya
    started a topic to find diff b/w time

    to find diff b/w time

    How to find the diff b/w time using PLSQl in Oracle......... ............
    See more | Go to post

  • Sandya
    started a topic To Find The Diff between time

    To Find The Diff between time

    How to Find the diff b/w time
    See more | Go to post
No activity results to display
Show More
Working...