/**** Test comments ****/ DROP TABLE /**** comment ****/ IF EXISTS Customers; CREATE TABLE Customers (CustomerID INT,/**** comment ****/ CompanyName TEXT, ContactName TEXT, PRIMARY KEY (`CustomerID`) ); INSERT INTO Customers (CustomerID, CompanyName, ContactName) VALUES (1, 'Alfreds Futterkiste', 'Maria Anders'), (4, 'Around the Horn', 'Thomas Hardy'), (11, 'Bs Beverages', 'Victoria Ashworth'), (13, 'Bs Beverages', 'Random Name'); -- comment -- Hi