- Hands-On GUI Programming with C++ and Qt5
- Lee Zhi Eng
- 71字
- 2021-08-27 19:00:18
INSERT
Next, the INSERT statement is used to save new data into a database table. For example:
INSERT INTO user (username, password) VALUES ("test2", "123456");
The preceding SQL command inserts username and password data into the user table. There are some other statements that can be used together with INSERT, such as LOW_PRIORITY, DELAYED, HIGH_PRIORITY, and so on.
Please refer to the following link to learn more about these options:
https://dev.mysql.com/doc/refman/5.7/en/insert.html
https://dev.mysql.com/doc/refman/5.7/en/insert.html
推薦閱讀
- Learning LibGDX Game Development(Second Edition)
- 數據結構和算法基礎(Java語言實現)
- Bulma必知必會
- NativeScript for Angular Mobile Development
- Visual C++數字圖像處理技術詳解
- Jupyter數據科學實戰
- 微信小程序全棧開發技術與實戰(微課版)
- 深入淺出React和Redux
- 好好學Java:從零基礎到項目實戰
- PHP編程基礎與實踐教程
- Visual Basic語言程序設計上機指導與練習(第3版)
- Cinder:Begin Creative Coding
- 分布式系統架構與開發:技術原理與面試題解析
- Learning Puppet
- 軟件自動化測試實戰解析:基于Python3編程語言