Skip to content

Instantly share code, notes, and snippets.

1. Прости заявки
Езикът за създаване на заявки към релационни СУБД
(Система за Управление на Бази от Данни) - SQL
СУБД = DBMS (Database Management System)
SQL - Structured Query Language
В името на примерите, дефинираме релацията - Movie(title, year, length, incolor, studioName, producerC#)
package main
import "testing"
func testSquareSumDiff(n uint64, expected uint64, t *testing.T) {
result := SquareSumDifference(n)
if result != expected {
t.Error("Expected ", expected, ", got ", result)
}
}