Summary: in this tutorial, we will show you how to create an updatable view and update data in the underlying table through the view.

Introduction to MySQL updatable views

In MySQL, views are not only query-able but also updatable. It means that you can use the INSERT or UPDATE statement to insert or update rows of the base table through the updatable view. In addition, you can use DELETE statement to remove rows of the underlying table through the view.

However, to create an updatable view, the SELECT statement that defines the view must not contain any of the following elements:

Read More

วิตามินซี

วิตามินซีเกือบแทบจะทุกยี่ห้อบนข้างกระปุกจะเขียนว่า “แอสคอบิก แอซิด” (Ascorbic acid) ซึ่งกรดแอสคอบิกตัวนี้ก็เป็นสารเคมีที่สังเคราะห์ขึ้นมาให้มีลักษณะ “คล้ายกับวิตามินซีในบางส่วน” เพราะโครงสร้างจริง ๆ ของวิตามินซีนั้นมีความซับซ้อนสูงมาก และกรดแอสคอบิกก็เป็นเพียงแค่เปลือกของวิตามินซีจริง ๆ เท่านั้น

วิตามินซีที่แท้จริงจึงไม่ใช่แค่กรดแอสคอบิก แต่กฎหมายยอมให้เรียกกรดแอสคอบิกว่า “วิตามินซี” ได้ และถ้าจะให้ถูกเราต้องเรียกว่า “วิตามินซี คอมเพล็ก” (Vitamin C complex) เนื่องจากการที่วิตามินซีต่าง ๆ จะออกฤทธิ์ได้นั้นจะต้องอาศัยองค์ประกอบหรือทำงานร่วมกับสารต่าง ๆ ในร่างกาย นั่นจึงเป็นหนึ่งในเหตุผลว่า ทำไมเราทานอาหารเสริมวิตามินซี (กรดแอสคอบิก) แล้วถึงไม่ค่อยเห็นผลใด ๆ ตามสรรพคุณ

Read More