數據庫的查詢總結-----按條件查詢

簡單查詢 查詢全部字段 select * from 表名; 例: select * from students; 查詢指定字段 select 列1,列2,... from 表名; 例: select name from students; 使用 as 給字段起別名 select id as 序號, name as 名字, gender as 性別 from students; 能夠經過 as 給表
相關文章
相關標籤/搜索