摘要: 1、增删改查// 插入一条数据insert into tableName values('liu','bei')// 删除一条数据delete from tableName where last = 'liu'// 更新一条数据update tableName set first = 'bei' where first = 'finder'// 查询一条数据select * from `info` where first = 'finder'2、查看三种MySQL字符集的方法// 查看MySQL数据 阅读全文
posted @ 2014-01-04 22:50 刘贝 阅读(130) 评论(0) 推荐(0) 编辑