SQL

From Void-Byte
Jump to navigation Jump to search

Useful commands:

show databases;

use <database>;

show tables;

select <columnA>, <columnB> from <table> where <columnB> like <pattern>;

select last_name, first_name from users union select 1,2;