Skip to content

groupby to check each of their date in oracle sql

I have a table ISIN_TBL which has two fields IDENTIFIER and ALLT_DATE which are of datatype varchar and Date respectively. There are many ALLT_DATE for each IDENTIFIER in the table. Normally for each IDENTIFIER the ALLT_DATE should be the same. But just to confirm i want to write a sql query to list IDENTIFIE…

Execute query and populate the same in datagrid Box

I have a winform app connected to access database as data source , but in access i was using this below SQL to generate a query table called trend: But i do not know how execute this & populate the same in datagrid box on form load event(dataset:CSCdataset) , please help me. Answer I guess you can find mo…

Create a left join with raw string data

I have a list of e-mails in a text file and a Person table with an email column. I need to know which of the emails are in the table, and which are not. So I was thinking in creating a query and do some kind of left join in my raw e-mail data with the Person table. Now, I