মূল কন্টেন্টে যান
eLearner.app
মডিউল 2 · 3-এর পাঠ 4কোর্সে 7/57~6 min
মডিউল পাঠ (3/4)

AS দিয়ে নাম পরিবর্তন করা হচ্ছে

By default, columns in the result have the same name as the source column. When you select an expression (a calculation, a concatenation, an aggregate) the default name may look ugly or unclear. With AS you assign an alias, that is, a name of your choice:

SQL
SELECT <colonna_o_espressione> AS <alias>
FROM   <tabella>;

The keyword AS is optional (salary salary_eur works too), but writing it makes the query more readable. If the alias contains spaces or significant uppercase letters, wrap it in double quotes: AS "Annual Salary".

Examples

SQL
-- Rinomina semplice (in inglese per convenzione):
SELECT first_name AS name,
       last_name  AS surname
FROM employees;

-- Alias su un'espressione calcolata:
SELECT first_name,
       last_name,
       salary * 13 AS annual_pay
FROM employees;

Try it

ব্যায়াম#sql.m2.l3.e1
প্রচেষ্টা: 0লোড হচ্ছে...

Extract each employee's last name and salary, renaming the columns to 'last' and 'salary_eur'.

সম্পাদক লোড হচ্ছে...
ইঙ্গিত দেখান

The keyword is AS: SELECT column AS new_name.

সমাধান 3 প্রচেষ্টার পরে উপলব্ধ

Review exercise

ব্যায়াম#sql.m2.l3.e2
প্রচেষ্টা: 0লোড হচ্ছে...

Extract first and last name concatenated into a single column called 'full_name'. Use the || operator to concatenate and put a space between the two.

সম্পাদক লোড হচ্ছে...
ইঙ্গিত দেখান

In PostgreSQL string concatenation is done with ||, and then the alias with AS.

সমাধান 3 প্রচেষ্টার পরে উপলব্ধ