This is Awesome!. Thank you sir. From years I have been watching your tutorials and you are always the Best. Again, Thank you for this and all the amazing tutorials.
@vikasverma933 жыл бұрын
Dear sir, your content is world class..
@Genial_Gouthi3 жыл бұрын
i agree
@KuldeepSingh-nq1vi Жыл бұрын
Wow Great Explanation Sir, I understood the function correctly...
@AmAddis Жыл бұрын
Thank you Mr Venkat Big respect Sir. I have done this before watching this . Here is the piece of code . DECLARE @string VARCHAR(32) DECLARE @length INT =1 DECLARE @numbersOnly WHILE PATINDEX (‘%[^0-9]%’ , @string) > 0 BEGIN SET @string = STUFF(@string, PATINDEX (‘%[^0-9]%’ , @string),@string, @length,’ ‘) END SET @numbersOnly = @string SELECT @numbersOnly
@elhammasoudinejad1751 Жыл бұрын
DECLARE @string VARCHAR(32) ='Di2a3n4a5' DECLARE @length INT =1 DECLARE @numbersOnly VARCHAR(32) ='' WHILE PATINDEX ('%[0-9]%' , @string) > 0 BEGIN SET @numbersOnly = @numbersOnly+ substring(@string ,PATINDEX ('%[0-9]%' , @string),1) SET @string = STUFF(@string, PATINDEX ('%[0-9]%' , @string),@length,'') END select @string , @numbersOnly
@jacksparrowcapitan32323 жыл бұрын
Great work form interview perspective, waiting for more
@DEEPAKYADAV-rp6rh3 жыл бұрын
Hello Sir, Please start continuing the Azure tutorial Videos series after #34, ......Eagerly Waiting. You are an awesome teacher.
@AnilKumar-bd2yt3 жыл бұрын
Nice sir. Your big fan. Upload more sql.
@devarakondasankararao38023 жыл бұрын
Venkat sir is the great teacher
@sowjanyakamatam4017 Жыл бұрын
this is perfect!, Thank you for saving the day
@aniketkolte173 жыл бұрын
Hello sir, please continue azure tutorial series and include Azure-DevOps also in the series.
@chakravaramranganath90363 жыл бұрын
Thank you for the information, appreciate that
@NIRMALA-ts6pf3 жыл бұрын
Thank you so much sir 🙏, it will help us lot.
@ravibathula91053 жыл бұрын
sir please do videos on performance tuning /index optimisation/query cost and etc..
@sahej973 жыл бұрын
Awesome Tutorial
@mekuriaamu3 жыл бұрын
you are special. I wish you could do SSAS
@vishalkumargupta54843 жыл бұрын
Awesome sir
@dharmeshwarpandey76373 жыл бұрын
I liked it first sir...love ya...
@PrasannanGachinmani3 жыл бұрын
We can use ASCII function to extract numbers and alphabets
@raghun22323 жыл бұрын
create function fn_getnumber (@string varchar(100)) returns varchar(100) as begin while patindex('%[^0-9]%')>0 begin set @string=replace(@string,substring(@string,patindex('%[^0-9]%'),1),1,' ') end return @string end by using relace also we can do know sir
@santhoshn37663 жыл бұрын
Awesome!!! thanks ..
@georget10i3 жыл бұрын
Thank You!
@MajidKhan-ln6fs3 жыл бұрын
Thank you
@nikhithareddy22893 жыл бұрын
Sir, pls make a video on Initcap a string like "iam learning sql server" using sql
@bhargavidutt8573 жыл бұрын
Hi Venkat, Thank you for ur detailed explanation. todayI have asked to display the highest occurrence of the character in a string .i tried as "SELECT case when ( REGEXP_INSTR('jhon doe', '[a]+', 1,2)) >0 then 'a' else 'notfound' end "higest_ocuured_charecter" FROM DUAL; can you please help with more generic query for this question Input:- 'jhon doe' output:- 'O'
@SonicVisualGR Жыл бұрын
Hi, thank you for the great video. One question, - what if @input variable contain non English characters ? What if we don't know what language character comes in the @input variable ? For example lets say @input contain a mix of Greek, English and Numeric characters (for example 'H2ell3oW5or6ldΓει6αΣ7ουΚ8όσ9με' ) ?
@Luth1us2 жыл бұрын
What about TRANSLATE() function? It can solve this problem easily.
@itumandal223 жыл бұрын
Too good
@vinays12343 жыл бұрын
What is microservice?
@shubhampatil-sf4km3 жыл бұрын
Select TRIM (' Hello World'); How to remove Extra spaces Between "Hello World" And which Function we need to use in MS-SQL?
@Shri-RAM-JaiBajrangBali3 жыл бұрын
HI SHUBHAM PLEASE USE THE COMMAND DECLARE @STRING VARCHAR(100)=' Hello World' SELECT REPLACE(REPLACE(REPLACE(@STRING ,CHAR(32),'()'),')(',''),'()',CHAR(32)) AS STRIN_WITHOU_SPACES