Declarative_Programming
output_table = [] for row in FROM(*input_tables): if WHERE(row): output_table += [SELECT(row)] if ORDER_BY: output_table = ORDER_BY(output_table) if LIMIT: output_table = output_table[:LIMIT]
SQL
select
Projecting Tables(投影表)
Arithmetic(算术)
Last updated