httpd/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql

7 lines
148 B
SQL

CREATE DATABASE php_mysql_test;
USE php_mysql_test;
CREATE TABLE foobar (name VARCHAR(10), value INTEGER);
INSERT INTO foobar VALUES("fish", 42);