Important MySQL Short Notes Pdf For Beginners 2021
Important MySQL Short Notes Pdf For Beginners 2021
✅ MySQL BETWEEN
● ●
●
👉Is MySQL Keywords Are Case Sensitive?
✍ No, MySQL keywords are not case-sensitive. insert and INSERT are the same.
✍ But writing Upper-case is best practice.
INSERT INTO students(id,name,age,phone) VALUES(6,'Noman',16,'016349823xx')
1 Nasir 20 01637019XX
2 MIM 17 01637069XX
3 SAJIB 19 01633019XX
4 Imam 20 01437019XX
5 Arafat 18 01237019XX
Do like this
UPDATE students SET age = 19 WHERE id = 5
This query will update only the 5th id's student.
Do like this
DELETE FROM students WHERE id = 5
This query will delete only the 5th id's student.
👉MySQL LIMIT Statement.
✍ We can use the LIMIT statement to specify how many records we want to fetch from
the table.
✍ Also, we can specify FROM which record fetching will start.
📌 RIGHT JOIN
●
📌 CROSS JOIN
●
●
💗💗
💗💗 Check Our Services
For any kind of issue, Feel Free to Contact Us.
.
Learn More:
● FrontEnd Topic
● BackEnd Topic