mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 12:51:13 +08:00
bda77c620b
sqlpp::optional is an alias for std::optional for C++17 and beyond. Otherwise, it is a simple and incomplete backport. For older versions of C++, the library offers simple back Similar for string_view and span.
6 lines
152 B
SQL
6 lines
152 B
SQL
CREATE TABLE tab_sample (
|
|
alpha bigint(20) DEFAULT NULL,
|
|
beta tinyint(1) DEFAULT NULL,
|
|
gamma varchar(255)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|