create_new in dropdown -> INSERT into database #841
-
Hi!
My question now is, how can I create a new city in my "cities" table and also already enter the correct ID into my "content" table? Thanks a lot for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Here is my suggestion (written for sqlite, but adaptable to other databases): DROP TABLE IF EXISTS content;
DROP TABLE IF EXISTS cities;
CREATE TABLE cities (
ID INTEGER PRIMARY KEY AUTOINCREMENT,
city VARCHAR(255) NOT NULL
);
CREATE TABLE content (
ID INTEGER PRIMARY KEY AUTOINCREMENT,
city_id INTEGER,
FOREIGN KEY (city_id) REFERENCES cities(ID)
);
insert into cities(city) values ('paris'), ('london');
-- Form to create content, including the ability to add a new city
SELECT 'form' AS component;
SELECT 'city' AS name, 'City' AS label, 'select' AS type,
(
SELECT json_group_array(json_object('label', city, 'value', ID))
FROM cities
) AS options,
TRUE AS create_new,
TRUE as dropdown;
-- insert missing cities
set existing_city_id = (select id from cities where id = CAST(:city AS INT));
insert into cities(city)
select :city where $existing_city_id is null and :city is not null;
-- Insert a new content element (either by linking existing or just inserted city)
insert into content (city_id)
select COALESCE($existing_city_id, last_insert_rowid())
where :city is not null;
select 'table' as component;
select * from cities;
select 'table' as component;
select * from content; Screencast.From.2025-03-05.23-58-32.mp4 |
Beta Was this translation helpful? Give feedback.
Here is my suggestion (written for sqlite, but adaptable to other databases):