Hii Saloni !! While working with my SQL workbench, whenever I try to update my table details like set e_name = 'XYZ'.... its raising error like "You are using Safe Update Mode".... How to fix this ???
@vishalnadekar6948 ай бұрын
You need to specific the where condition to update e_name at multiple position while using safe mode, to update the same first run the following query : SET SQL_SAFE_UPDATRS = 0; Then you can run your update query
@neerajkhurrana28311 ай бұрын
Mam, you are doing a great work. Please create windows function video. Thank you so much for your amazing work ❤😊
@patel11111018 ай бұрын
OUTPUT-TRIM LEADING 456, TRIM TRAILING http: is that possible to trim only 0 or / ???
@TheGame-d4l3 ай бұрын
how to show more than duration 1000:00:00 in MySQL?
@preetihalder4758 Жыл бұрын
SELECT id, RIGHT(dob,2) As result FROM employee; result output--- 19 10 12 03 10 17 09 28 26