1
摘要: 表: UserVisits + + + | Column Name | Type | + + + | user_id | int | | visit_date | date | + + + 该表没有主键,它可能有重复的行 该表包含用户访问某特定零售商的日期日志。 假设今天的日期是 '2021-1-1 阅读全文
posted @ 2024-09-14 17:57 萌哥-爱学习 阅读(14) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE your_table_name ( field1 STRING, field2 STRING, field3 STRING ); insert into your_table_name values ('1' ,'a','b' ) , ('1' ,'c','d' ) , ( 阅读全文
posted @ 2024-09-14 09:22 萌哥-爱学习 阅读(4) 评论(0) 推荐(0) 编辑