sql语句

 select * from system where name in('vibrate_on','vibrate_in_silent');

或者

select * from system where name='vibrate_on' or name='vibrate_in_silent';


            *:表示查询完之后,显示所有的属性

system:在这个表里面查询

  name:条件属性,只显示name的值为vibrate_on,或者为vibrate_in_silent的那两条info

你可能感兴趣的:(sql,System)