HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- table db query
Operating System - HP-UX
        1839880
        Members
    
    
        3458
        Online
    
    
        110156
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2006 09:50 PM
05-13-2006 09:50 PM
			
				
					
						
							table db query
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						I have a bank table that looks like below
Denom Serial created
$10 333111 10-MAY-06
$10 111888 09-APR-06
$5 555666 01-JAN-89
.
.
.
.
$20 666877 09-SEP-98
I selected number of denominations created
"select distinct(denom),count(*) from bank which is ok.
Now I wanted to select denom, the number of denom created yesterday, & total denoms created as of yesterday in single output. Can someone help me here . thanks in advance...
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
Denom Serial created
$10 333111 10-MAY-06
$10 111888 09-APR-06
$5 555666 01-JAN-89
.
.
.
.
$20 666877 09-SEP-98
I selected number of denominations created
"select distinct(denom),count(*) from bank which is ok.
Now I wanted to select denom, the number of denom created yesterday, & total denoms created as of yesterday in single output. Can someone help me here . thanks in advance...
		2 REPLIES 2
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2006 04:25 AM
05-14-2006 04:25 AM
			
				
					
						
							Re: table db query
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hmmmm.  I think I understand what you are asking for, so try something like this.
select denom, count(*) from back where created > trunc(sysdate)-1 and created < trunc(sysdate);
That should get you only yesterday (by that, I mean 12am to 12am). Also, I'm assuming Oracle in this case.
Brian
		
		
	
	
	
select denom, count(*) from back where created > trunc(sysdate)-1 and created < trunc(sysdate);
That should get you only yesterday (by that, I mean 12am to 12am). Also, I'm assuming Oracle in this case.
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2006 02:17 PM
05-14-2006 02:17 PM
			
				
					
						
							Re: table db query
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi Ferdi,
As Brian mentioned you can use the sysdate to get the the previous / next dayas records.
For eg:- This query will give you records
$5 555666 ---- which are before January 2006.
SQL> SELECT distinct denom, count(*()
FROM bank
WHERE created < '01-JAN-2006'
GROUP BY DEMON;
For yesterday use sysdate -1
To manupulate the datetime use the to_char(created,'DD-MON-YYYY:HH:MI:SS')
Indira A
		
		
	
	
	
As Brian mentioned you can use the sysdate to get the the previous / next dayas records.
For eg:- This query will give you records
$5 555666 ---- which are before January 2006.
SQL> SELECT distinct denom, count(*()
FROM bank
WHERE created < '01-JAN-2006'
GROUP BY DEMON;
For yesterday use sysdate -1
To manupulate the datetime use the to_char(created,'DD-MON-YYYY:HH:MI:SS')
Indira A
	Never give up, Keep Trying
			
			
				
			
			
			
			
			
			
		The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP
