create table t1 as select ename from emp where ename='KING';
select 'g''day mate' quarks from t1 union all
select 'beavers'' teeth' from t1 union all
select '''' from t1;

+----------------+
| quarks         |
+----------------+
| g'day mate       |
| beavers' teeth   |
| '                      |
+----------------+

相关文章:

  • 2021-08-10
  • 2021-09-13
  • 2022-12-23
  • 2021-07-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
相关资源
相似解决方案