Benutzer:Andreas Plank/MySQL
Aus Offene Naturführer
< Benutzer:Andreas Plank
Version vom 29. Oktober 2013, 11:39 Uhr von Andreas Plank (Diskussion | Beiträge)
-- information
USE `artenquiz`; -- database
SHOW TABLES; -- all tables
SHOW CREATE TABLE `TaxonQuiz`; -- including constraints
SHOW INDEX FROM `table`;
-- REPLACE(str,from_str,to_str)
SELECT REPLACE('www.mysql.com', 'w', 'Ww');