comment(--RANDOM SQL QUERIES THAT DO NOTHING INTERESTING) comment(--Copyright (C\) 2009 - Keith Pitt ) comment(--This program is free software: you can redistribute it and/or modify) comment(--it under the terms of the GNU General Public License as published by) comment(--the Free Software Foundation, either version 3 of the License, or) comment(--(at your option\) any later version.) comment(--This program is distributed in the hope that it will be useful,) comment(--but WITHOUT ANY WARRANTY; without even the implied warranty of) comment(--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the) comment(--GNU General Public License for more details.) comment(--You should have received a copy of the GNU General Public License) comment(--along with this program. If not, see .) reserved(INSERT) reserved(INTO) ident(users) operator(()ident(first_name)operator(,) ident(last_name)operator(\)) reserved(VALUES) operator(()stringoperator(,) stringoperator(\))operator(;) reserved(INSERT) reserved(INTO) ident(users) operator(()ident(first_name)operator(,) ident(last_name)operator(\)) reserved(VALUES) operator(()stringoperator(,) stringoperator(\))operator(;) reserved(UPDATE) ident(users) reserved(SET) ident(first_name) operator(=) string reserved(WHERE) ident(first_name) operator(=) stringoperator(;) reserved(DELETE) reserved(FROM) ident(users) reserved(WHERE) ident(first_name) operator(=) stringoperator(;)