SQL (pronounced “ess-que-el”) stands for Structured Query Language.
SQL is standard language to communicate with a database.
According to ANSI (American National Standards Institute), Sql is the standard language for relational database management systems.
For Selecting all data from Users Table
Following Query is used :
Example
select *from users
Try it »