table_func.sql 668 B

123456789101112131415
  1. --!syntax_pg
  2. select count(*) from plato.concat('Input','Input');
  3. select count(*) from plato.concat_view('Input','raw','Input','raw');
  4. select count(*) from plato.range('');
  5. select count(*) from plato.range('','A');
  6. select count(*) from plato.range('','A','Z');
  7. select count(*) from plato.range('','A','Z','');
  8. select count(*) from plato.range('','A','Z','','raw');
  9. select count(*) from plato.regexp('','Inpu.?');
  10. select count(*) from plato.regexp('','Inpu.?','');
  11. select count(*) from plato.regexp('','Inpu.?','','raw');
  12. select count(*) from plato.like('','Inpu%');
  13. select count(*) from plato.like('','Inpu%','');
  14. select count(*) from plato.like('','Inpu%','','raw');