Difference between revisions of "SQL Syntax Examples"
From Free Knowledge Base- The DUCK Project: information for everyone
(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 09:30, 1 July 2017
Examples
- SELECT * FROM customers;
- SELECT username FROM usertable WHERE username like "Dav";