如果需要查询范围内的,如:查询1-6范围内的可以:
select * from table where num >1
and num <6
mysql原生语句where数组条件查询where后加多个条件可以用and来连接。
如,student表中有如下数据:
现在要查,sex为男,age为20的那些数据,
<?$host = "localhost" //主机名
$user = "root" //mysql用户名
$password = "" //mysql密码
$database = "doc" //mysql数据库名
$tables = "mclass" //表名
$conn=mysql_connect("$host","$user","$password") or die("数据库打开出错")
mysql_select_db("$database")
$query="select * from $tables"
$result=mysql_query($query,$conn)
$i=0
$j=0
while($row=mysql_fetch_row($result)){
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)