Code snippets (MySQL)

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Dit artikel bevat veel gebruikte testcode en code snippets

Testtabel met twee records

drop table if exists tmp01;
create table tmp01(veld01 varchar(100),	veld02 varchar(100));
insert into tmp01 (veld01, veld02) values ("a","b"),("c","d");