Difference between revisions of "SQL Syntax Examples"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Created page with "== Other Pages with SQL Examples == * Krissy's MySQL Command Reference with Examples * More MySQL Examples * Create Table Examples for MySQL * MySQL database Ac...")
 
Line 1: Line 1:
 +
== Examples ==
 +
 +
# SELECT * FROM customers;
 +
# SELECT username FROM usertable WHERE username like "Dav";
 +
 
== Other Pages with SQL Examples ==
 
== Other Pages with SQL Examples ==
  

Revision as of 10:30, 1 July 2017

Examples

  1. SELECT * FROM customers;
  2. SELECT username FROM usertable WHERE username like "Dav";

Other Pages with SQL Examples