Search
 
SCRIPT & CODE EXAMPLE
 

SQL

search for tables with name postgresql

select table_schema,
       table_name
from information_schema.tables
where table_name like 'payment%'
      and table_schema not in ('information_schema', 'pg_catalog')
      and table_type = 'BASE TABLE'
order by table_name,
         table_schema;
Code has been copied
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql take number in string 
Sql :: sql count duplicate rows 
Sql :: MySQL - Enabling the Event Scheduler 
Sql :: netstat -tln mysql 
Sql :: how to list function in psql 
Sql :: how to get current mysql version 
Sql :: install mysqldump ubuntu 
Sql :: list all permissions on a table in postgres 
Sql :: how to check data type in sql server 
Sql :: raw query must include primary key 
Sql :: timestamp in sqlite 
Sql :: oracle next run dates 
Sql :: show indexes mysql 
Sql :: ifnull postgres 
Sql :: how to check database size in mysql 
Sql :: oracle alert log location 
Sql :: sql beginning of previous month 
Sql :: copy from folders in sql server 
Sql :: mac os zsh: command not found: mysql 
Sql :: sql copy table 
Sql :: duplicate column values sql 
Sql :: Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. 
Sql :: mysql server is not starting xampp 
Sql :: change name of colum in sql table 
Sql :: mysql substract count and distinct count 
Sql :: get current date data in mysql 
Sql :: drop all foreign key constraints mysql 
Sql :: create row number in sql 
Sql :: add timestamp column to existing table ms sql server 
Sql :: sysdate in sql 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =