echo 多行文字到文本
这篇文章为了记录自己写Dockerfile时踩的坑,分三部分描述echo内容到文件的用法
- shell 脚本 echo 单行文字到文本
- shell 脚本 echo 多行文字到文本
- Dockerfile 中 echo 多行文字到文本
Easy
SQL Schema
Given a table salary
, such as the one below, that has m=male and f=female values. Swap all f and m values (i.e., change all f values to m and vice versa) with a single update statement and no intermediate temp table.
Note that you must write a single update statement, DO NOT write any select statement for this problem.