Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Test SQL snippets

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 :: sql database column values restrict 
Sql :: mysql search like but first exact match 
Sql :: regex any word except sql 
Sql :: ring MySQL create new table and insert records 
Sql :: creating h2 database in relative directory eclopse 
Sql :: mysql create database if not exists 
Sql :: get statis values sql 
Sql :: how to use multiple transactions in sql server 
Sql :: SQLALCHEMY track is set to true or false 
Sql :: sql fetch next 10 rows pdo 
Sql :: ring PostgreSQL 
Sql :: mysql select where field like in list 
Sql :: postgresql copy backup table 
Sql :: oracle executing sqlplus commands and waiting for completion 
Sql :: unpdate pl sql 
Sql :: id INT NOT NULL AUTO_INCREMENT 
Sql :: data table footer customize 
Sql :: compute age mysql 
Sql :: sqlite timer 
Sql :: dump a single table named mytab 
Sql :: mysql select where field is a value 
Sql :: implicit inner join table alias with id values 
Sql :: power bi find all ids not in other tables 
Sql :: select save as table postgres 
Sql :: How to insert NULL value in MySQL 
Sql :: Create a username nd password in MySql 
Sql :: undefined get_magic_quotes_gpc() in sqlite 
Sql :: sql to linq converter online free 
Sql :: big query add table rows to another table 
Sql :: how to get data from 2 database 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =