Click here to Skip to main content
15,895,667 members

Comments by Member 11776570 (Top 61 by date)

Member 11776570 28-Feb-24 8:25am View    
col2 filter the records as per expectation, so i am using it in where clause. if i use it with join then it will matter or not for it to be first in the index script ?
Member 11776570 28-Feb-24 8:01am View    
select
b.col2
from tab2 a
inner join tab1 b on b.col1=a.col1 and b.col3=a.col3
where b.col2=abc

like this if we are using.
Member 11776570 28-Feb-24 7:58am View    
If i take the col2 in the join with filter not in where condition but with the join table, then still i need to take that column first in the index script ?
Member 11776570 8-Jan-24 11:55am View    
I need to get those numeric values from the whole single data column. Like below if we have values like this {52000,5523,"",9965,4556,55236,"","","","","","","","","","","","","","","","","","",""}
It should get me only those number in column format. means separate records for each numeric value.
Member 11776570 10-Nov-23 9:02am View    
like this