mysql 存储过程,如何只显示部分列的内容,例如 id name gender1 A F2 B M3 C F4 D M5 E F假如我只需要取id和name的话,该如何操作?
select id,name from 表名
只查 id 和 name 就行 select id,name from