怎樣在mysql中為表字段起別名?
很簡單,如果只是起別名的話,可以用到mysql中的as關(guān)鍵字,當(dāng)然也可以省略。下面是一個例子。例如某個表有id name sex三個字段。如果要進(jìn)行查詢的話,可以寫成select id , name , sex from table。如果需要起別名,可以寫成select id, name as n , sex as s from table。或者select id, name n , sex s from table
怎樣在mysql中為表字段起別名?
很簡單,如果只是起別名的話,可以用到mysql中的as關(guān)鍵字,當(dāng)然也可以省略。下面是一個例子。例如某個表有id name sex三個字段。如果要進(jìn)行查詢的話,可以寫成select id , name , sex from table。如果需要起別名,可以寫成select id, name as n , sex as s from table。或者select id, name n , sex s from table