Тёмный

Trigger in SQL | SQL Triggers | Triggers in SQL | SQL in tamil | Tech with Hema | 

Tech with Hema
Подписаться 4,6 тыс.
Просмотров 22 тыс.
50% 1

Trigger in SQL | SQL Triggers | Triggers in SQL | SQL in tamil | Tech with Hema |#sql #sqlintamil
Learn Trigger in tamil. You will see more videos in sql that will be coming soon. Please add your comments in the comment box if you like me to cover any other topics in sql that you are interested. Thank you.
Queries used in the video can be accessed through this link - drive.google.c...
Installation of Microsoft SQL server and SQL server management studio - • Installation of Micros...

Опубликовано:

 

27 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 50   
@mathspulligal7460
@mathspulligal7460 Месяц назад
Super Mam First Class Explanation with Query with Example
@shivaselvan8858
@shivaselvan8858 4 месяца назад
Thanks! Your content is awesome. Keep rocking!
@jeevarj-q4u
@jeevarj-q4u 8 месяцев назад
Great explanation
@sps3831
@sps3831 11 месяцев назад
Thank you mam.... I pass the exam... 🎉
@TechWithHema
@TechWithHema 11 месяцев назад
Congrats @sps3831, I'm glad that my video helped you.
@sapb1tamil
@sapb1tamil 8 дней назад
Good explanation
@Bharathvaj2828
@Bharathvaj2828 11 месяцев назад
TQ for this video Mam😊
@rajeshkumarraj7423
@rajeshkumarraj7423 11 месяцев назад
Super thanks lots of u madam
@HarilakshmiHarilakshmi-f4x
@HarilakshmiHarilakshmi-f4x День назад
Thank you so much for your explanation mam 🙏 😊
@SOWMIYAR-y4d
@SOWMIYAR-y4d Месяц назад
Mam upload SQL project...it's very helpful
@TarotWorld-ur7ln
@TarotWorld-ur7ln 3 месяца назад
Perfect explanation
@palanissamy6881
@palanissamy6881 2 месяца назад
super Hema
@mullaipugazhendi3236
@mullaipugazhendi3236 11 месяцев назад
Hi please upload a video on SQL performance tuning.
@TechWithHema
@TechWithHema 11 месяцев назад
Sure @mullaipugazhendi3236
@shivaselvan8858
@shivaselvan8858 4 месяца назад
@@TechWithHema Yes, please
@giridharanmahesh9233
@giridharanmahesh9233 29 дней назад
Hi Mam i used the query that you used in the video for creating a trigger and i am getting syntax error near ON
@karthikeyanskk9762
@karthikeyanskk9762 11 месяцев назад
Visual basic 6 yeppadi use panni program pandradhu nu video podunga
@tamilarasanparivallal9196
@tamilarasanparivallal9196 11 месяцев назад
store procedurela function eppadi call pannalam and scalar fuction na enna and table value function and user difined function
@TechWithHema
@TechWithHema 11 месяцев назад
Sure @tamilarasanparivallal9196
@malathir3348
@malathir3348 4 месяца назад
Tnk you mam❤
@magarajothik3144
@magarajothik3144 11 месяцев назад
mam please upload MsSQL Full tutorial video mam
@TechWithHema
@TechWithHema 11 месяцев назад
Sure @magarajothik3144
@SANDY-nk7vn
@SANDY-nk7vn Месяц назад
Why you're using UNION ALL in between insert and delete?
@muthulakshminagarajan48
@muthulakshminagarajan48 5 месяцев назад
nosql paththii sollunga sis
@SARAVANAKUMARK-h8b
@SARAVANAKUMARK-h8b 2 месяца назад
sql query optimize need hema
@BusinessandKnowledge-sk8wu
@BusinessandKnowledge-sk8wu 3 месяца назад
I need elborate session from trigger
@tamilarasanparivallal9196
@tamilarasanparivallal9196 11 месяцев назад
mam eththanai type of parameter irukku and atha eppadila use pannalam atha outputla eppadi prinmt pannalam atha slunga mam
@TechWithHema
@TechWithHema 11 месяцев назад
Hi @tamilarasanparivallal9196 you can check out my Stored procedure video where I have explained about input and output parameters.
@tamilarasanparivallal9196
@tamilarasanparivallal9196 11 месяцев назад
But I want explain deeply mam using many number of parameter same time
@TechWithHema
@TechWithHema 11 месяцев назад
sure @@tamilarasanparivallal9196
@lathankumar5868
@lathankumar5868 7 месяцев назад
Hi sis,delete the one record based on employees id in case we have select name it will delete it can be store empaudit table same query??
@TechWithHema
@TechWithHema 7 месяцев назад
Sorry @lathankumar5868, I couldn't understand your question. Can you explain in detail?
@lathankumar5868
@lathankumar5868 7 месяцев назад
Employees id base pani 1 record delete pana employee audit table store agum so Athu va name instead of id use pani delete pana audit table store aguma same query sis..
@TechWithHema
@TechWithHema 7 месяцев назад
Hi@@lathankumar5868 You can use any filter to delete the records and those deleted records will get saved in the audit table. If you want other details of the employee like `to be stored in the audit table, add required columns to the audit table and make changes in the select statement in the trigger to include those columns.
@lathankumar5868
@lathankumar5868 7 месяцев назад
@@TechWithHema thank you
@prasannami6421
@prasannami6421 9 месяцев назад
Same query i execute in my laptop, but it is not executing and showing error.... Why
@TechWithHema
@TechWithHema 9 месяцев назад
Hi @prasannami6421, Are you using MSSQL? What is the error message?
@prasannami6421
@prasannami6421 9 месяцев назад
I am using Oracle SQL
@TechWithHema
@TechWithHema 9 месяцев назад
Hi @prasannami6421 There are syntax differences between them. You can try something like this in oracle. CREATE OR REPLACE TRIGGER trg_emp_audit BEFORE INSERT ON employees FOR EACH ROW BEGIN INSERT INTO employees_audit VALUES (:NEW.EMPLOYEE_ID, 'INS', SYSDATE); END
@prasannami6421
@prasannami6421 9 месяцев назад
I have tried and got the answer madam... Are you able to guide the Procedure lecture ( I need from root level with basic concepts... If possible a graphical explanation)... I think you are a master in SQL so only asked
@TechWithHema
@TechWithHema 9 месяцев назад
Hi @@prasannami6421 , Are you looking for Stored procedure topic? You can find in this link ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-vJOsW41S16E.html
@saravananchidambaram3569
@saravananchidambaram3569 3 месяца назад
Good explanation
@mohamedhusain7807
@mohamedhusain7807 19 дней назад
thank you
@kedarnathk6326
@kedarnathk6326 11 месяцев назад
Really a nice video madam.clear understanding.Thanks for your efforts.Please make more videos related to PLSQL functions.My kind request is to plz teach us the cursor and its uses like the trigger video
@TechWithHema
@TechWithHema 11 месяцев назад
Sure, thanks @kedarnathk6326
@sivaranjani1500
@sivaranjani1500 Год назад
Tq for this video😊
@poongodibanu2036
@poongodibanu2036 4 месяца назад
This is sql server super mam pls teach us oracle plsql triggers mam
@sivaranjani1500
@sivaranjani1500 Год назад
Can you plz update events video also
@TechWithHema
@TechWithHema 11 месяцев назад
Hi @sivaranjani1500 events are available in MYSQL. Equivalent for events in MSSQL is Sql Server Agent jobs. I can make a video about that.
@sivaranjani1500
@sivaranjani1500 11 месяцев назад
Tq for replying me 😊
Далее
🎙ПЕСНИ ВЖИВУЮ от КВАШЕНОЙ
3:05:21
Новый вид животных Supertype
00:59
Просмотров 74 тыс.
Trigger in dbms // explained in tamil
12:34
Просмотров 22 тыс.
SQL Tutorial for Beginners
44:57
Просмотров 2,1 млн
Index | SQL in Tamil | Logic First Tamil
10:40
Просмотров 56 тыс.
🎙ПЕСНИ ВЖИВУЮ от КВАШЕНОЙ
3:05:21