Showing 1-3 of 3 packages
```psql -- 清空表 DO $$ DECLARE r RECORD; begin FOR r IN (SELECT tablename FROM pg_tables WHERE schemaname = 'public') LOOP EXECUTE 'DROP TABLE IF EXISTS public.' || quote_ident(r.tablename) || ' CASCADE'; END LOOP; END $$;
Strongly typed PostgreSQL introspection library
mysql to postgres proxy server