9.19mysql的一些簡單查詢

1.查詢學號爲1,或者姓名爲hualili的記錄 select * from stu(表名) where 學號=1 or 姓名=「hualili」 2.查詢學號爲1,2,3的記錄 select * from stu(表名) where 學號 in(1,2,3) 3.查詢學號不是1,2,3的記錄 select * from stu(表名) where 學號 not in(1,2,3) 4.查詢年齡爲
相關文章
相關標籤/搜索