you have lot of patience RR, you are the best in explaining, awesome in teaching.
@srtechnologiesravindraredd53036 ай бұрын
Thank you 😊
@Soniab96010 ай бұрын
You are the best in explaining.
@srtechnologiesravindraredd530310 ай бұрын
Thank you
@SANJAYYADAV-hm2bs10 ай бұрын
Yours content are best Rabindra sir.
@bhavani-vu6kg10 ай бұрын
Hi sir,Today I have attended Infosys Interview in which they asked most of the questions that are covered in SQL playlist 1.Explain about SCD's 2.use of coalesce 3.Write Innerjoin query 4.How to get unique records from table 5.Get the count of employees department wise(Columns : Employee,Department) 6.Name Salary Ram 500 Ram 600 Ram 700 Ravi 2000 Ravi 5000 output should be Name Salary Ram 500,600,700 Ravi 2000,5000 7.Millons of records between two different databases how you validate
@kumaroracle10699 ай бұрын
With how many experiance you have attended
@SANJAYYADAV-hm2bs10 ай бұрын
select c5, case when (length(c5)-length(replace(c5,'.','')))=2 then substr(c5,instr(c5,'.',1,1)+1,instr(c5,'.',1,2)-1-instr(c5,'.')) when (length(c5)-length(replace(c5,'.','')))=1 then substr(c5,1,instr(c5,'.')-1) when (length(c5)-length(replace(c5,'.','')))=0 then c5 END as Domain_name from jan20; Its a good example of multiple functions like- substr(), Instr(), replace(), length() and case statements.
@sushanthkumar6746 ай бұрын
Sir please let me know whether the answer is correct or not? SELECT SUBSTR(INPUT,CASE WHEN INSTR(DOMAIN_NAME,'.',1) THEN INSTR(DOMAIN_NAME,'.',1)+1 ELSE 1 END,LEN(DOMAIN_NAME) AS DOMAINNAME FROM ( SELECT SUBSTR(DOMAIN_NAME,1,(CASE WHEN INSTR(DOMAIN_NAME,'.',1,2) THEN INSTR(DOMAIN_NAME,'.',1,2)-1 ELSE INSTR(DOMAIN_NAME,'.')-1 END)) AS DOMAINNAME FROM DOMAIN )
@ReadAloudStoryTime210 ай бұрын
Can we use split function ?
@srtechnologiesravindraredd530310 ай бұрын
Yes
@bhavani-vu6kg10 ай бұрын
Hi Sir can you provide the query for the below question Table1 Col1 Col2 Col3 Table2 Col1 Col2 Col4 use union query for Table1 and Table2
@srtechnologiesravindraredd530310 ай бұрын
In simple query Select col1,col2,col3 from table1 Union Select col1,col2,col3 from table2; It's a simple union.. still if you have doubts contact us..
@sivasankar701310 ай бұрын
Hi sir Your r creating donain_table and u r inserting into donain_table How u can execute insert in to domain_table and how also u can execute select * from dual, Can u explain a bit slower
@srtechnologiesravindraredd530310 ай бұрын
Check the insert all command...
@sachinsachu793710 ай бұрын
Hai sir if this question asked in any of the interview can we explain and solve it by using decode function or case statement which is more easier ? Or this should be the best approach that I can go and impress the interviewer?😅
@srtechnologiesravindraredd530310 ай бұрын
You can go with case statement..reason is it is having more options like like handling more comparison operators and as well as you can handle even null values as well..
@sachinsachu793710 ай бұрын
@@srtechnologiesravindraredd5303 thanku 😊🙏🏻
@devarajr317110 ай бұрын
Sir is it correct or not for below query, let me know... Select rownum, substr(substr(string,instr(string, '.', 1,1)+1), 1, instr(substr(string,instr(string, '.', 1,1)-1)) domain from tab where rownum