myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
B

@burningphoenix

sql tutorial

SQL
3 years ago
from google.cloud import bigquery # Create a "Client" object client = bigquery.Client() # Construct a reference to the "hacker_news" dataset dataset_ref = client.dataset("hacker_news", project="bigquery-public-data") # API request - fetch the dataset dataset = client.get_dataset(dataset_ref) # List all the tables in the "hacker_news" dataset tables = list(client.list_tables(dataset))

ARYAN

SQL
3 years ago
CREATE TABLE lpu ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL ); INSERT INTO lpu VALUES (1, 'Aryan', 'M'); INSERT INTO lpu VALUES (2, 'Akansha', 'F'); INSERT INTO lpu VALUES (3, 'Yash', 'M');
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us