Home | Insert New Record | Login | Logout | |
FAQ
NEWS
FEEDBACK
HTML CSS PHP SQL
SQL - Syntax
Welcome !
SQL - Syntax

All the SQL statements start with any of the keywords like SELECT, INSERT, UPDATE, DELETE, ALTER, DROP, CREATE, USE, SHOW and all the statements end with a semicolon (;).

Example

  • SELECT emp_name, hire_date, salary FROM employees WHERE salary > 5000;
    For better readability you can also write the same statement, as follow:
    Example:
    SELECT emp_name, hire_date, salary 
    
     
    Users replays
    0 results
    - Add your answer -