Files
spring-boot-data-geode/spring-geode-samples/caching/inline/src/main/resources/schema.sql

7 lines
168 B
SQL

CREATE TABLE IF NOT EXISTS calculations (
operand INTEGER NOT NULL,
operator VARCHAR(256) NOT NULL,
result INTEGER NOT NULL,
PRIMARY KEY (operand, operator)
);