php操作mysql的几条基本命令
摘要:
查询 select * from table;/全部查询
select * from table where '字段' like '%aaa%';/模糊查询
select * from table order by '字段' desc/asc;/按升降排序
select COUNT(*) from news;/查询共多少条记录 插入
insert into table values('',''... 阅读全文
posted @ 2009-03-31 19:46 小刀在线 阅读(161) 评论(0) 推荐(0) 编辑