SQL sample file
sql_sample_file_500KB.sql
500.0 KB
application/sql
SHA256 verified
File details
Filename
sql_sample_file_500KB.sqlSize500.0 KB (512000 bytes)
MIME type
application/sqlExtension
.sqlSHA256
0728ffcb8ab7bf603c0cd9112e43e1541f2b361fda800bff9b903d9beb2bc1bdDownload commands
Use in scripts and tests
curl -L -o sql_sample_file_500KB.sql \
https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/
wget -O sql_sample_file_500KB.sql \
https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/
import requests
url = "https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/"
resp = requests.get(url)
with open("sql_sample_file_500KB.sql", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("sql_sample_file_500KB.sql", buf);
# Download and verify SHA256
curl -L -o sql_sample_file_500KB.sql https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/
echo "0728ffcb8ab7bf603c0cd9112e43e1541f2b361fda800bff9b903d9beb2bc1bd sql_sample_file_500KB.sql" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/sql/sql_sample_file_500KB.sql/").content
assert hashlib.sha256(data).hexdigest() == "0728ffcb8ab7bf603c0cd9112e43e1541f2b361fda800bff9b903d9beb2bc1bd"
More SQL files
Other SQL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
sql_reporting_query_sample.sql |
167 B | dcc281eba014b4db… |
Download |
sql_sample_file_100MB 2.sql |
100.0 MB | 20492a4d0d84f8be… |
Download |
sql_sample_file_100MB 3.sql |
100.0 MB | b59ccbfd84222a03… |
Download |
sql_sample_file_100MB.sql |
100.0 MB | b59ccbfd84222a03… |
Download |
sql_sample_file_1MB.sql |
1.0 MB | 37a73fc2d97ac25e… |
Download |
sql_sample_file_200KB.sql |
200.0 KB | 30355e9822b3f93d… |
Download |
Learn more