"SQLite SELECT"의 두 판 사이의 차이

14번째 줄: 14번째 줄:
SELECT InvoiceId, CustomerId, InvoiceDate, BillingAddress, BillingCountry
SELECT InvoiceId, CustomerId, InvoiceDate, BillingAddress, BillingCountry
FROM invoices
FROM invoices
WHERE BillingCountry='Spain'
WHERE BillingCountry='Spain';
LIMIT 3;
</syntaxhighlight>
</syntaxhighlight>



2021년 1월 24일 (일) 12:22 판

1 개요

SQLite SELECT
SELECT * FROM employees LIMIT 3;
SELECT EmployeeId, LastName, FirstName FROM employees LIMIT 3;
SELECT * FROM invoices LIMIT 3;
SELECT InvoiceId, CustomerId, InvoiceDate, BillingAddress, BillingCountry
FROM invoices
WHERE BillingCountry='Spain';

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}