數據庫的簡單查詢

1、最簡單查詢(查所有數據) select * from 表名; 注:* 代表所有列 select * from info     2、查詢指定列 select code,name from info     3、修改結果集的列名 select code as '代號',name as '姓名' from info   4、條件查詢 select*from info where code='p00
相關文章
相關標籤/搜索