摘要:
普通查询: 一:查询所有数据 select * from Info 查所有数据 select Code,Name from Info 查特定列 二:根据条件查 select * from Info where Code='p001' 一个条件查询 select * from Info where ... 阅读全文
摘要:
LAMP: Linx 阿帕奇 Mysql PHPWAMP:一键搭建php开发环境工具修改数据库密码:use mysql;UPDATE mysql.user SET password=password('123') WHERE user='root';数据库的基本操作:数据库--表结构--字段(列)每... 阅读全文