select*from emp where rownum<=5;
SQL Query to copy only structure of one table to other table in SqlServer
SQL Query to get structure of table in SqlServer
Movie Songs Lyrics
Software Testing-QTP Scripts,Testing Faqs
Subscribe to:
Post Comments (Atom)
1 comment:
SELECT *
FROM (SELECT distinct * FROM emp ORDER BY RECORD desc)
WHERE ROWNUM < 5
Post a Comment