Advertisement

1 - 10 of 72 containing alltags:("rownum") (0.001 seconds)
How can I get the row number for a record after filter by "WHERE" and sort by "ORDER" ? Andrew
Zones: OracleDate Answered: 04/03/2000 Grade: A Views: 0
HI EVERBODY I HAVE A BIG PROBLEM FOR ME my question is :I can group  two coloum in 1 table and I should rownum  for each  this group could you tell me how write this code Thank you for helpi...
Zones: OracleDate Answered: 07/07/2003 Grade: B Views: 25
select * from table where rownum = 4 no rows. select * from table where rownum <= 4 4 rows returned select * from table where rownum = 1 1 row returned select * from table where...
Zones: OracleDate Answered: 12/18/2003 Grade: A Views: 315
hi All, Actually i'm querying database for pagination. The query includes field from different table, and the result can be sorted on any of the fields in these tables. Now the problem is that i...
Zones: MS SQL ServerDate Answered: 07/03/2005 Grade: A Views: 0
I'm trying to update the first or last n rows in a table based on rownum being <= n. Here is what I have so far. UPDATE vap_export_ar_receipt_work v SET ar_weekly_receipt_unit = v.ar_weekly_rec...
Zones: OracleDate Answered: 09/12/2005 Grade: A Views: 0
Hello, I'm trying to create a view (in oracle) where I'd like to use the rownum of the record in my source table. SourceTable: Rownum    Data 1               Record A 2               Re...
Zones: DatabasesDate Answered: 02/03/2006 Grade: A Views: 0
How can i get 30 records from a table without using rownum
Zones: DatabasesDate Answered: 02/12/2006 Grade: A Views: 0
select '~'||rpad(nvl(hh_mtw_indicator,' '),5,' ')||'|'||rpad(nvl(hh_rec_num,' '),5,' ')||'|'|| rpad(nvl(hh_agency_name,' '),60,' ') from tmp_mtw where hh_mtw_indicator is not null and report_da...
Zones: OracleDate Answered: 09/18/2006 Grade: B Views: 0
hi i have the following sql: select distinct t1.a1, t1.b1, t1.c1 from t1, t2 where t1.a1 = t2.a2 and rownum <= 10 the purpose is to get first 10 rows (exactly) as a result but actually i g...
Zones: OracleDate Answered: 09/01/1999 Grade: B Views: 0
Hi, How can I get the 50 to 100 records of a select query (something like "rownum > 50 and rownum < 100" in Oracle)? Thanks
Zones: MS SQL ServerDate Answered: 01/11/2000 Grade: C Views: 334