Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rethinkdb で選択エイリアスを作成するには?
SQL での例:
SELECT column_name AS alias_name FROM table_name;
地図でできます
JavaScript では次のようになります。
r.table("table_name").map({ alias_name: r.row("column_name") })