Sep 13 2007 05:04 PM 101047 45 Write a query to display employee records having same salary? kowmudiswarna Vamsikrishna Sudanagunta Nov 16th, 2022 Print first names and the last names of the artists who had zero sales or no sales? Ekansh Jul 12th, 2022 Just add the ; in the end of quest :) Answer Question Select Best Answer Aug 25 2007 08:36 PM 15325 24 How do you view the last record added to a table? t_ahwaz Bobby Apr 18th, 2018 Rowid is pseudo column and it can change internally especially on transactional table himabindu Apr 16th, 2018 Why use rownum < 2? Answer Question Select Best Answer Feb 22 2007 07:57 PM 35590 10 how to select the recently UPDATED records from the table? sat.inn Ayyappa Aug 24th, 2012 Hello leelakrishna302 ... Your query ... Code SELECT * FROM emp e WHERE rowid IN (SELECT max(rowid) FROM emp); gives only latest inserted records not the latest updated records.. leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 Select * from emp e where rowid in( select max(rowid) from emp ); Answer Question Select Best Answer Feb 09 2006 12:22 PM 8313 9 Can e truncate some of the rows from the table instead of truncating the full table. Soma Bose Vishal R Bhadange Aug 12th, 2012 Yes. Yes we can truncate some of the rows from the table, But table should be partitioned & all the rows to be deleted should be present in one single partition... leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 We cannot Answer Question Select Best Answer Aug 31 2005 07:35 PM 8246 25 There is a % sign in one field of a column. What will be the query to find it? '' Should be used before '%'. Nazeera Jaffar Oct 6th, 2012 The below code selects the column with a substring % (e.g.) reg%istrationCodeSELECT * FROM game WHERE name LIKE %\%% escape ; Nazeera Jaffar Sep 30th, 2012 The below code will select the row having column as %CodeSELECT * FROM table_name WHERE column_name LIKE !%escape! Answer Question Select Best Answer
Sep 13 2007 05:04 PM 101047 45 Write a query to display employee records having same salary? kowmudiswarna Vamsikrishna Sudanagunta Nov 16th, 2022 Print first names and the last names of the artists who had zero sales or no sales? Ekansh Jul 12th, 2022 Just add the ; in the end of quest :) Answer Question Select Best Answer
Vamsikrishna Sudanagunta Nov 16th, 2022 Print first names and the last names of the artists who had zero sales or no sales?
Aug 25 2007 08:36 PM 15325 24 How do you view the last record added to a table? t_ahwaz Bobby Apr 18th, 2018 Rowid is pseudo column and it can change internally especially on transactional table himabindu Apr 16th, 2018 Why use rownum < 2? Answer Question Select Best Answer
Bobby Apr 18th, 2018 Rowid is pseudo column and it can change internally especially on transactional table
Feb 22 2007 07:57 PM 35590 10 how to select the recently UPDATED records from the table? sat.inn Ayyappa Aug 24th, 2012 Hello leelakrishna302 ... Your query ... Code SELECT * FROM emp e WHERE rowid IN (SELECT max(rowid) FROM emp); gives only latest inserted records not the latest updated records.. leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 Select * from emp e where rowid in( select max(rowid) from emp ); Answer Question Select Best Answer
Ayyappa Aug 24th, 2012 Hello leelakrishna302 ... Your query ... Code SELECT * FROM emp e WHERE rowid IN (SELECT max(rowid) FROM emp); gives only latest inserted records not the latest updated records..
leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 Select * from emp e where rowid in( select max(rowid) from emp );
Feb 09 2006 12:22 PM 8313 9 Can e truncate some of the rows from the table instead of truncating the full table. Soma Bose Vishal R Bhadange Aug 12th, 2012 Yes. Yes we can truncate some of the rows from the table, But table should be partitioned & all the rows to be deleted should be present in one single partition... leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 We cannot Answer Question Select Best Answer
Vishal R Bhadange Aug 12th, 2012 Yes. Yes we can truncate some of the rows from the table, But table should be partitioned & all the rows to be deleted should be present in one single partition...
leelakrishna302 Profile Answers by leelakrishna302 Questions by leelakrishna302 Jun 15th, 2012 We cannot
Aug 31 2005 07:35 PM 8246 25 There is a % sign in one field of a column. What will be the query to find it? '' Should be used before '%'. Nazeera Jaffar Oct 6th, 2012 The below code selects the column with a substring % (e.g.) reg%istrationCodeSELECT * FROM game WHERE name LIKE %\%% escape ; Nazeera Jaffar Sep 30th, 2012 The below code will select the row having column as %CodeSELECT * FROM table_name WHERE column_name LIKE !%escape! Answer Question Select Best Answer
Nazeera Jaffar Oct 6th, 2012 The below code selects the column with a substring % (e.g.) reg%istrationCodeSELECT * FROM game WHERE name LIKE %\%% escape ;
Nazeera Jaffar Sep 30th, 2012 The below code will select the row having column as %CodeSELECT * FROM table_name WHERE column_name LIKE !%escape!