摘要:
组合where子句 and操作符 select id,content,nickname from t_comment where id<11 and id>2; select id,content,nickname,blog_id from t_comment where id>11 and blo 阅读全文
摘要:
为了使用select检索数据,必须至少给出两条信息 想选择什么,从什么地方选择 索引单个列 select title from t_blog; 检索多个列 select title,flag,create_time from t_blog; 检索所有列 select * from t_blog; 检 阅读全文