SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table medialib ( id int, catalog int ); create table category ( id int, name varchar(64) ); insert into medialib values (1, 1); insert into category values (1, 'Cat 1'); select medialib.id, category.name from medialib join category on category.id = medialib.catalog;
Stuck with a problem? Got Error? Ask ChatGPT!
Copy Clear