how to create temparary sequence
Answers were Sorted based on User's Feedback
Answer / shipra
select rownum seq
, name
, age
from ( select name
, age
from your_table
order by name
)
Is This Answer Correct ? | 3 Yes | 0 No |
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
What is posting?
Does mysql_real_escape_string prevent sql injection?
what is the difference between nested subquery and correlated subquery?
How many types of indexes are there in sql?
How many types of normalization are there?
What does count (*) mean in sql?
using cursors salesman get bonus as 10% of their salary , managers get 20% , analalist get 30%. generae a report showing the employee name, salary , bonus.
Why do we need unique key in a table?
What are the two parts of design view?
Explain the commit statement.
what is column? : Sql dba