Blogger Information
Blog 31
fans 0
comment 0
visits 18242
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP第8课-MySQL增删查改-九期线上班
Content っ
Original
594 people have browsed it
  1. #查询
  2. SELECT *FROM account WHERE user_id = 1
  3. SELECT *FROM account WHERE user_id = 1 OR user_id = 3
  4. #删除
  5. DELETE FROM account WHERE user_id = 3
  6. #修改
  7. UPDATE account SET email = '222@qq.com' WHERE user_id = 2
  8. #增加
  9. INSERT INTO account SET user_id = 3 ,username = "333", email = '333@qq.com',`password` = '333'
  10. INSERT INTO account (user_id,username,email,`password`) VALUES (4,'444','444@qq.com','444')

手写代码

2.创建数据表,每张表有10个字段(截图)

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post