|
|
Question : set rowcount using subquerys
|
|
I have a subquery under sybase included into a select statement, an example..
select name from (select * from table1, table2, where...)
I know that using "set rowcount" I can limit rows from the main select statement, but I want to restrict rows in the inner select statement,
This is a result of migrating from sql server 2000 to sybase, please help me before I get completely crazy.
|
Answer : set rowcount using subquerys
|
|
Try something like this: Sybase does not support TOP keyword.
Set Rowcount 100
select * into #temp from table1, table2, where...
select name from #temp
regards-
|
|
|
|
|