film表
字段說明film_id
電影id
title
電影名稱
description
電影描述資訊
create table if not exists film (category表film_id smallint(5) not null default '0',
title varchar(255) not null,
description text,
primary key (film_id));
字段說明category_id
電影分類id
name
電影分類名稱
last_update
電影分類最後更新時間
create table category (film_category表category_id tinyint(3) not null ,
name varchar(25) not null, `last_update` timestamp,
primary key ( category_id ));
字段說明film_id
電影id
category_id
電影分類id
last_update
電影id和分類id對應關係的最後更新時間
create table film_category (film_id smallint(5) not null,
category_id tinyint(3) not null, `last_update` timestamp);
使用join查詢方式找出沒有分類的電影id以及名稱
**:
select t.film_id,t.title from film t left join film_category f
on f.film_id = t.film_id
where f.category_id is null;
此題使用左連線。 找出沒有出現的數 題解
說明每個測試點時限 1 second 每個測試點記憶體限制 1 mb 測試點數量 10 是否有special judge 否 使用標準輸入輸出 題目描述 給你乙個n和n 2個不重複的在1 n之間數 找出沒有出現的那2個數 n 1000000 輸入格式 第一行,乙個數n 第二行,n 2個在1 n之間不...
opencv 中的mat使用報出沒有定義
在檢視 其它視窗 屬性管理器,選擇新增現有屬性管理器,檔案屬性選擇所有檔案,就會處理可以用的屬性檔案,否則要你自己重新配置上opencv相關的標頭檔案,庫檔案 然後再檔案頭上包含以下標頭檔案 include include include include 但是還是顯示mat沒有定義。這裡主要原因是 ...
遞迴的方式查詢出多級目錄
1 資料庫關係 mysql id 自增的id pid 父級目錄的id rolename 目錄名稱 10 一級目錄21 二級目錄32 目錄43 四級目錄 2 程式持久層 2 1 程式持久層介面 通過pid查詢單條資料 param pid 父級主鍵 return 例項物件 list querybypid...