在SQL中,AS關鍵字用于為查詢結果中的列或者表達式指定別名。
對于列別名,AS關鍵字可以用于為查詢結果中的列指定一個可讀性更好的別名。例如:
SELECT customer_name AS name, customer_age AS age, customer_city AS city FROM customers;
這里,AS關鍵字被用于為customer_name列指定了別名name,customer_age列指定了別名age,customer_city列指定了別名city。
對于表達式別名,AS關鍵字可以用于為一個計算結果或者一個子查詢指定別名。例如:
SELECT order_id, order_date, total_price, (total_price * 0.1) AS tax FROM orders;
這里,AS關鍵字被用于為(total_price * 0.1)這個表達式指定了別名tax。
總結起來,AS關鍵字用于為查詢結果中的列或者表達式指定別名,以提高結果的可讀性和理解性。