mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
14 lines
461 B
Plaintext
14 lines
461 B
Plaintext
INSERT INTO pointcloud_formats (pcid, srid) VALUES (777, 666);
|
|
CREATE TABLE pc1(p pcpoint);
|
|
CREATE TABLE pc2(p pcpoint);
|
|
DELETE FROM pointcloud_formats WHERE pcid = 777;
|
|
SELECT * from pointcloud_columns ORDER BY 1,2,3,4;
|
|
schema | table | column | pcid | srid | type
|
|
--------+-------+--------+------+------+---------
|
|
public | pc1 | p | | | pcpoint
|
|
public | pc2 | p | | | pcpoint
|
|
(2 rows)
|
|
|
|
DROP TABLE pc1;
|
|
DROP TABLE pc2;
|