table_funcs_spec.sql 305 B

123456789101112131415
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. /* kikimr can not */
  4. use plato;
  5. --insert into Output
  6. select
  7. TablePath() as table_path,
  8. TableRecordIndex() as table_rec,
  9. TableName("foo/bar") as table_name1,
  10. TableName("baz") as table_name2,
  11. TableName() as table_name3
  12. from Input
  13. where key = '800'
  14. ;