Search
 
SCRIPT & CODE EXAMPLE
 

SQL

test sql query

-- Test SQL queries online: use a fiddle:
http://sqlfiddle.com/
Comment

Example SQL Test

12345678910111213141516
CREATE TABLE tests(id INTEGER PRIMARY KEY,server_name TEXT NOT NULL,server_port INTEGER);INSERT INTO tests VALUES (99123, "server_test1", 99321);INSERT INTO tests VALUES (99423, "server_test2", 99313);INSERT INTO tests VALUES (99763, "server_test3", 99333);INSERT INTO tests VALUES (99913, "server_test4", 99666);SELECT * FROM tests WHERE server_port = 99321;SELECT * FROM tests WHERE server_port = 99333;SELECT * FROM tests WHERE server_port = 99666;
Comment

PREVIOUS NEXT
Code Example
Sql :: create foreign key postgres 
Sql :: postgresql newline character 
Sql :: truncate table sqlite 
Sql :: oracle show errors compilation 
Sql :: sql query to create table in database 
Sql :: mysql command 
Sql :: postgresql could not start server mac 
Sql :: mysql composite primary key 
Sql :: mysql limit order by 
Sql :: rand mysql 
Sql :: sql compiler online 
Sql :: SQL get last 5 minutes data 
Sql :: initcap in sql 
Sql :: forcefully delete a row in mysql which has references 
Sql :: create unique constraint postgres 
Sql :: postgresql select case insensitive 
Sql :: mysql if statement in where clause 
Sql :: close external port 3306 with iptables 
Sql :: postgress if 
Sql :: SQL Server run query on linked server 
Sql :: match in sql server 
Sql :: postgres copy command 
Sql :: mysql trigger 
Sql :: create-table 
Sql :: dump sql file to database postgres 
Sql :: postgresql find blocked query 
Sql :: copy data from one postgres container to another 
Sql :: sql server fn_dblog 
Sql :: How to take sum of column with same id and different table in SQL? 
Sql :: initialize sql date 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =