RyuGod
Programming Language Collector
Hello, World!
examples
Informations
Join
TableScheme
1
2
3
4
5
6
7
-- MySQL 테이블 스키마 조회 예제
SELECT table_name, 
       table_rows
  FROM information_schema.tables as i
 WHERE i.table_schema = 'employees'
;
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W