This commit is contained in:
Max W.
2025-01-31 13:05:11 +01:00
parent 0eae775942
commit 5497ef422d
8 changed files with 117 additions and 1 deletions

View File

@ -0,0 +1 @@
delete from categories where id = 30;

View File

@ -0,0 +1,9 @@
insert into categories (title)
values ('Fremdsprachige Bücher'),
('eBooks'),
('Märchen');
delete
from categories
where title in ('Märchen', 'eBooks', 'Fremdsprachige Bücher');

View File

@ -0,0 +1,6 @@
create table if not exists stores
(
street varchar(100),
description text
)

View File

@ -0,0 +1,7 @@
update categories set title = '
Fremdsprachige Bücher' where title = 'Fremdsprachige Bücher';
update categories set title = 'Kinder- & Jugendbücher' where title = 'Kinder- und Jugendbücher';
update categories set title = 'Ernährung & Diät' where id = 8;
update categories set title = replace(title, 'und', '&');