Thank you sir for wonderful explanations could please make the more video's on Windowing Clause like (function over the partitions),rank,dense rank,row_number ,rank,ntile,sum and average etc
@IshwarAcademy5 күн бұрын
Soon, I will upload the videos.
@jatinverma6236 күн бұрын
ans of last question select emp_id , emp_name , emp_salary , dept_name , dept_location from employee inner join depatrment on employee.emp_deptid = depatrment.dept_id where dept_id in (select dept_id from depatrment where dept_location = 'New york')
@sameeppoudel53057 күн бұрын
Can i learn all the contents using php myadmin ?
@pavitrapandey36869 күн бұрын
Can you please help me
@pavitrapandey36869 күн бұрын
Hi sir when I am going to install I am facing the feature you are trying to use on network resources that is unavailable And next there mentioned enter a alternate path to a folder containing
@shivamKumar-by7ht10 күн бұрын
Sir ye 1 hi project h ya 6 alag alag ?
@IshwarAcademy10 күн бұрын
1 project: start to end
@sourabhpatil313017 күн бұрын
mssql ke interview question ki ek series banana bhi
@IshwarAcademy17 күн бұрын
@@sourabhpatil3130 ye playlist me more than 150 questions covered hai, jo interview preparation me help karegi. kzbin.info/aero/PLysly0KYnAY2nz3js1uJ4KU-YQ7z2-IJJ&si=J1KULXdyeVvn_sOk
@anilkumarprajapati25519 күн бұрын
Excellent video
@RahulKumar9355520 күн бұрын
Nice
@saurabhsharma578224 күн бұрын
very informative
@jadhavshubham223927 күн бұрын
Bhai thanks yaaaaaar, ab thoda bohot dimag mai ghus raha hai, is video kp dekhne ke baad.
@IshwarAcademy27 күн бұрын
Thank you
@vfact965529 күн бұрын
Can you make a video on oracle free database administration course?
@IshwarAcademy28 күн бұрын
This is Oracle database playlist SQL for Beginners: kzbin.info/aero/PLysly0KYnAY2q8cobbotVbn36XOskQR2F
@RushiLifts29 күн бұрын
select empID AS 'Employee ID' , empName AS 'Employee Name' , empSalary AS 'Employee Salary' , empJob AS 'Employee Job', empPhone AS 'Employee Phone' , deptId AS 'Department ID' from employee_info where deptId = (select departId from department_info where departLocation = 'newyork');
@sohilqureshi1287Ай бұрын
Sir your content is very good but audio quality is very poor
@IshwarAcademyАй бұрын
I appreciate your feedback. Audio quality is improved in other videos. Please watch them. Hope you'll enjoy and learn more
@readerisleader12Ай бұрын
BEGIN DECLARE @Salary decimal; select @Salary =AVG(Salary) from Employees; select @Salary AS 'AVG.Salary'; If @Salary >80000 BEGIN PRINT 'AVERAGE salary is greater than 35000'; END ELSE IF @Salary>50000 BEGIN PRINT 'Average salary is between 50000 and 60000'; END ELSE IF @Salary >70000 BEGIN PRINT 'SALARY IS GRATER THAN AVERAGE'; END ELSE BEGIN PRINT 'salary is less than average'; END END is this correct?
@Ravikumar-ql4geАй бұрын
I was doing the same way as you do but it is showing Ambiguous error what does it mean..
@IshwarAcademyАй бұрын
Please do check you're using a proper alias with a column name.
@abhishekjadhav2667Ай бұрын
QUE-4 ---In SQL Server, to get the top N rows, you need to use OFFSET with FETCH. SELECT c.CustomerID, CONCAT(c.FirstName,' ',c.LastName),SUM(o.TotalAmount) AS TotalSpent FROM Customers c join Orders o ON c.CustomerID = o.CustomerID GROUP BY c.CustomerID, CONCAT(c.FirstName,' ',c.LastName) ORDER BY TotalSpent DESC OFFSET 0 ROWS FETCH FIRST 5 ROW ONLY;
@bhagwatchauhan8317Ай бұрын
sir agar keval second or third salary print karana ho toh kya command hoga
@IshwarAcademyАй бұрын
SELECT DISTINCT Salary FROM Employees ORDER BY Salary DESC OFFSET 1 ROW FETCH NEXT 2 ROWS ONLY;
@informationadda4422Ай бұрын
permission denied error message coming while i am executing create database query
@amitk5074Ай бұрын
@21:31 in this way how doe the inserted data come from magic inserted table as u mention insert data ony avilable in insert magic table
@amitk5074Ай бұрын
Kindly provide videos on window function ur way teaching is extraordinary sir
@IshwarAcademyАй бұрын
Thank you for the feedback. 😊 I will upload videos on the same very soon. Stay tuned by subscribing to my channel
@prakharsharma7520Ай бұрын
Hi sir, below query is correct-- --Query 5: Retrieve the most popular product category SELECT Top 1 CategoryName,c.Categoryid, sum(quanity) as totalsales from OrderItems as o; join Products as P on o.ProductID=p.ProductID join Categories as c on p.CategoryID=c.CategoryID group by c.Categoryid,categoryname order by totalsales desc
@IshwarAcademyАй бұрын
Please remove Semicolon (;).
@nibeditadas99422 ай бұрын
sir leetcod ke solution bhi btaoye
@IshwarAcademyАй бұрын
Ok. Sure
@nibeditadas99422 ай бұрын
sir can you make videos on AWS and ML
@SwatiSwati-h5f2 ай бұрын
Voice is not clear
@Rityad1622 ай бұрын
SELECT E.EMP_NAME, E.EMP_SALARY FROM EMPLOYEE E LEFT JOIN DEPARTMENT D ON E.EMP_DEPTID=D.DEPT_ID WHERE D.DEPT_LOCATION = 'NEW YORK';
@Rityad1622 ай бұрын
SELECT * FROM EMPLOYEE WHERE EMP_DEPTID = (SELECT DEPT_ID FROM DEPARTMENT WHERE DEPT_LOCATION = 'NEW YORK' );
@chintandarji78932 ай бұрын
SELECT EMP_ID, EMP_NAME, EMP_SALARY, EMP_DEPID,DEPT_NAME,DEPT_LOCATION FROM (SELECT * FROM EMPLOYEE E LEFT JOIN DEPARTMENT D ON E.EMP_DEPID = D.DEPT_ID WHERE D.DEPT_LOCATION = 'NEW YORK') t; used subquery, join and aliase
@thestorytym2 ай бұрын
I cannot download it on Mac, is there any alternatives?
@wasimkotwal18892 ай бұрын
I would request you to kindly make video on long complex sql query for power bi or tableau requirement ..
@wasimkotwal18892 ай бұрын
Excellent ...I really appreciate the way u explain in simple manner ...I have watch many videos to understand this , but finally my conclusion has been solved with your way of explaining ..I can say no will beat on KZbin for this ...really appreciated and thank you ...entire series was clearly capture apple to apple ..
@arvindkumargautam17072 ай бұрын
C lanvej
@chodipilliravikumar44592 ай бұрын
Please share data file or CSV file
@chodipilliravikumar44592 ай бұрын
Please send data file
@chodipilliravikumar44592 ай бұрын
Hi sir
@merakamiputtar2 ай бұрын
I ❤ like your vedio apka samjany ka andaz bohat acha ha bhai
@Aakash-e8v8n2 ай бұрын
hii @Ishwar i tried order by clause in my string values and it doesn't work on string values
@IshwarAcademy2 ай бұрын
It should work.
@IshwarAcademy2 ай бұрын
Can you type your query in this chat
@BarikulIslam-x8f2 ай бұрын
Tnx ❤❤❤
@Rahulpahadi3072 ай бұрын
15:03 category id ko references nhi kiya apne
@harshdubey9012 ай бұрын
SIR IN QUERY 37 CAN WE DO LIKE THIS ? SELECT * FROM vw_RecentOrders ORDER BY OrderDate DESC;
@merakamiputtar2 ай бұрын
I like your working bro ❤
@harpreetkaur-lu8np2 ай бұрын
i see a distorted screen in this video is that same for others?
@Datapassenger_prashant2 ай бұрын
Bhai, thanks a lot, I was able to solve one SQL problem on hackerrank because of this video.. The blunder on hackerrank on ms SQL ssms Data type Money ❤
@deepnarayanroy51662 ай бұрын
Sir very nicely explained. One request- please make tutorial on SSIS.!
@IshwarAcademy2 ай бұрын
I will plan
@KonkaM-z4z3 ай бұрын
sir question 4 (select c.customerID, c.FirstName, c.Lastname, sum(o.totalamount) as Totalamount from customers c join orders o on c.customerID = o.customerID group by c. firstName, c.Lastname order by Total amount desc LIMIT 5:) this is correct query for this question sir
@zayn18983 ай бұрын
Sir is this project is good for resume?
@amankhare93583 ай бұрын
Can I make this project in snowflake
@Husnainkutail3 ай бұрын
Video link
@mosaleem31153 ай бұрын
isko modify kese ker sakte hai
@gamyamentertainment49223 ай бұрын
can you speak loudly, then we can understand the word which you are saying. your voice is very low.
@IshwarAcademy3 ай бұрын
Hi, Thank you for your feedback. I have maintained sufficient audio pitch for the video. Still, if you feel audio is low, I will improve in upcoming videos.