Search
 
SCRIPT & CODE EXAMPLE
 

SQL

list tables sqlite

>sqlite3 c:dbmy_base						-- opens database
sqlite> .tables								-- all tables
sqlite> .table '%es'						-- tables ending with 'es'
-- Via SQL:
SELECT name FROM  sqlite_master 
WHERE type ='table' AND name NOT LIKE 'sqlite_%';
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql unix timestamp to date 
Sql :: oracle string length 
Sql :: sql server alter table column nullable 
Sql :: mysql grant all privileges to user from any host 
Sql :: mysql database stopped xampp mac 
Sql :: oracle list constraints 
Sql :: sql server version query 
Sql :: date today snowflake 
Sql :: mysql update part of string 
Sql :: mysql select random id from table 
Sql :: possgress drop if exists table 
Sql :: base64 encode sql server 
Sql :: Find all tables containing column with specified name - MS SQL Server 
Sql :: get size of indexes postgres 
Sql :: mysql backup 
Sql :: sql getdate date only 
Sql :: get hour from date sql 
Sql :: drop foreign key 
Sql :: how to copy a table from one database to another in mysql 
Sql :: oracle truncate partition 
Sql :: how to import database in mysql by cmd 
Sql :: oracle extract minute from date 
Sql :: how to alter table name in mysql 
Sql :: how to convert number to hours and minutes in oracle sql 
Sql :: sql server convert date to int 
Sql :: oracle sql assign unique number to each grouping 
Sql :: Mysql Workbench takes very long time to execute the first query 
Sql :: how to select department from table 
Sql :: postgresql division count return 0 
Sql :: create policy in sql 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =