例1.テーブルの別名
select * from table1 as t1;
select * from table1 t1;
asキーワードは省略できる。
sql server instructions help 入門 sponsored linkselect * from table1 as t1;
select * from table1 t1;
asキーワードは省略できる。
sql server instructions help 入門 sponsored link