0
顯示數據我有2個表MYSQL創建視圖,從兩個表
deposits
id |userId | amount| Date
1 | 2 | 150 | 2013-11-22 02:57:00
2 | 3 | 230 | 2013-11-25 03:19:00
withdrawals
id |userId | amount| Date
1 | 2 | 150 | 2013-11-23 02:57:00
2 | 3 | 190 | 2013-11-27 02:27:00
我想創建一個視圖,將顯示此格式的兩個表中的數據 最好記錄應由日期字段進行排序儘管它並不重要,因爲我可以按日期順序查詢視圖。
depositsAndWithdrawal
type | id | userId| amount | Date
deposit | 1 | 2 | 150 | 2013-11-22 02:57:00
withdrawal | 1 | 2 | 150 | 2013-11-23 02:57:00
deposit | 2 | 3 | 230 | 2013-11-25 03:19:00
withdrawal | 2 | 3 | 190 | 2013-11-27 02:27:00
這甚至有可能嗎?或者我是否需要創建一個新表並使用插入事件將相關行添加到該表中?