南风有翼 夜景阑珊
分类: Mysql/postgreSQL
2014-12-05 15:37:37
1、sql语句:
进行条件查询
从某表选择满足某条件的所有数据:
select * from table where 条件1(如mc='中国') AND 条件2
输出某表满足某条件的数据条数:
select count(*) from table1 where 字段A in(select 字段B from table2 where 字段C like('%某值%'))
select count(*) from table where 条件1 AND 条件2
选择部分数据,如满足某条件的前24行:
select * from table where 条件1 AND rownum <=24
更新:
select * from table for update
update table set 某字段='字段值' where 条件1 AND rownum <=24