Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Python and SQL Bible

You're reading from  Python and SQL Bible

Product type Book
Published in Jun 2024
Publisher Packt
ISBN-13 9781836206279
Pages 519 pages
Edition 1st Edition
Languages
Author (1):
Cuantum Technologies LLC Cuantum Technologies LLC
Profile icon Cuantum Technologies LLC
Toc

Table of Contents (29) Chapters close

1. Who we are 2. Introduction
3. Chapter 1: Python: An Introduction 4. Chapter 2: Python Building Blocks 5. Chapter 3: Controlling the Flow 6. Chapter 4: Functions, Modules, and Packages 7. Chapter 5: Deep Dive into Data Structures 8. Chapter 6: Object-Oriented Programming in Python 9. Chapter 7: File I/O and Resource Management 10. Chapter 8: Exceptional Python 11. Chapter 9: Python Standard Library 12. Chapter 10: Python for Scientific Computing and Data Analysis 13. Chapter 11: Testing in Python 14. Chapter 12: Introduction to SQL 15. Chapter 13: SQL Basics 16. Chapter 14: Deep Dive into SQL Queries 17. Chapter 15: Advanced SQL 18. Chapter 16: SQL for Database Administration 19. Chapter 17: Python Meets SQL 20. Chapter 18: Data Analysis with Python and SQL 21. Chapter 19: Advanced Database Operations with SQLAlchemy 22. References
23. Conclusion
24. Where to continue?
25. Know more about us
Appendix A: Python Interview Questions
1. Appendix B: SQL Interview Questions
2. Appendix C: Python Cheat Sheet 3. Appendix D: SQL Cheat Sheet

13.4 Updating Data in Tables

After inserting data into tables, it is important to keep the information up-to-date. This can be achieved through the use of SQL's powerful UPDATE statement, which allows you to modify existing data in a table. For example, you may want to change the name or address of a customer in your database. With the UPDATE statement, you can easily accomplish this task by specifying the table, the column to update, and the new value. Additionally, you can use SQL's WHERE clause to update only specific rows that meet certain criteria, such as customers who have not made a purchase within the last year.

Example:

Let's say that the price of the book "1984" has been revised to $9.99. We can update this in our 'Books' table like so:

In the UPDATE statement, you specify the table you want to update, then use the SET keyword to specify the column and new value you want to set. The WHERE clause specifies which rows should be updated...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime