SQL Syntax Examples: Difference between revisions

From Free Knowledge Base- The DUCK Project
Jump to navigation Jump to 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..."
 
No edit summary
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 08:30, 1 July 2017

Examples

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

Other Pages with SQL Examples