Python Programming Tutorial Part 2
34:47
Python Programming Tutorial Part 1
21:32
MySQL Create Function
11:41
3 жыл бұрын
C Parameter Passing Tutorial
21:28
3 жыл бұрын
CPSC 323 Final Project
4:10
4 жыл бұрын
Пікірлер
@selinawale2108
@selinawale2108 6 ай бұрын
The explanation is the best but please do Zoom it so we can see the syntax.
@supermarioxta5894
@supermarioxta5894 10 ай бұрын
i fucking love you
@westarpro9349
@westarpro9349 Жыл бұрын
Спасибо за обучающие видео)
@rodneytapit5636
@rodneytapit5636 Жыл бұрын
Thank you for making this clear example. I'm new to mysql, can you please see why the following is not working. I'm wishing to use a stored function in a stored procedure's where clause. But the procedure doesn't return any records - the product id does exist. Both compile without errors. And if I execute the set_clause() it returns the expected 'products.id=6'. I'm using the latest MySql build 8.0.34. CREATE DEFINER=`root`@`localhost` PROCEDURE `prod_srch`() READS SQL DATA BEGIN select * from products WHERE set_clause() /* this returns no records */ -- where products.id=6 -- this returns expected 1 record END CREATE DEFINER=`root`@`localhost` FUNCTION `set_clause`() RETURNS varchar(255) CHARSET utf8mb4 NO SQL DETERMINISTIC BEGIN declare rv varchar(255); set rv := "products.id=6"; RETURN (rv); END
@labbdogg2929
@labbdogg2929 Жыл бұрын
CREATE FUNCTION `Ticket_function` (item NUMERIC(8,2)) RETURNS CHAR(18) DETERMINISTIC BEGIN DECLARE myitem CHAR(18); SET myitem = CASE WHEN item < 1000 THEN 'Small Ticket Item' WHEN item BETWEEN 1000 AND 10000 THEN 'Medium Ticket Item' WHEN item > 10000 THEN 'Big Ticket Item' ELSE 'For Sale' END; RETURN myitem; END; Is this correct as well?
@briankyletan6347
@briankyletan6347 Жыл бұрын
Looks good to me!
@DATA_rockerz
@DATA_rockerz Жыл бұрын
Great explanation. found this video by chance. would be happy if you can more videos on SQL esp. SUBQUERIES, which are very complicated. thanks
@Fr0z3nTeamRO
@Fr0z3nTeamRO Жыл бұрын
My professor told us that parameters cannot be passed by reference in C (the said thing is only possible in C++) and they're passed by adress. I currently use VS 2022 and I get errors when trying to declare function parameters with '&" eg: void fun(int &var). Why is this?
@ranvijaymehta
@ranvijaymehta 2 жыл бұрын
Thank you so much now function looks very easy..
@gretajaie
@gretajaie 2 жыл бұрын
Would you happen to be the Brian from FTPSS?
@briankyletan6347
@briankyletan6347 2 жыл бұрын
Omg Greta. How are you?! And yes, ftpss Brian Tan.
@roxanad24
@roxanad24 2 жыл бұрын
Thank you for your video. But please make bigger to can see my sql file
@stuo9301
@stuo9301 2 жыл бұрын
That was helpful.
@stuo9301
@stuo9301 2 жыл бұрын
I wish that you explain the whole course
@briankyletan6347
@briankyletan6347 2 жыл бұрын
@@stuo9301 Glad to help! I'm guessing you are in a Database course. I'd be happy to do more SQL tutorials!
@Jason-zj7ex
@Jason-zj7ex 2 жыл бұрын
amazing vid !
@snehaldubey4897
@snehaldubey4897 3 жыл бұрын
Thank you..