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

7 lines
148 B
MySQL
Raw Normal View History

2017-11-16 10:27:52 +00:00
CREATE DATABASE php_mysql_test;
USE php_mysql_test;
CREATE TABLE foobar (name VARCHAR(10), value INTEGER);
INSERT INTO foobar VALUES("fish", 42);