SQLite SELECT

1 개요[ | ]

SQLite SELECT
SQLite
CPU
0.0s
MEM
4M
0.0s
Copy
SELECT * FROM employees LIMIT 3;
Error: near line 1: no such table: employees
Command exited with non-zero status 1
SQLite
Copy
SELECT EmployeeId, LastName, FirstName FROM employees LIMIT 3;
Loading
SQLite
Copy
SELECT * FROM invoices LIMIT 3;
Loading
SQLite
Copy
SELECT InvoiceId, CustomerId, InvoiceDate, BillingAddress, BillingCountry FROM invoices WHERE BillingCountry='Spain';
Loading

2 같이 보기[ | ]