Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

insert_projects.sql 675 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. INSERT INTO project (pid, pname, sdate, edate, pi, copi)
  2. VALUES
  3. (1, 'Project 1', '2024-04-01', '2024-05-01', '1', '11'),
  4. (2, 'Project 2', '2024-04-05', '2024-05-05', '1', '11'),
  5. (3, 'Project 3', '2024-04-10', '2024-05-10', '4', '15'),
  6. (4, 'Project 4', '2024-04-15', '2024-05-15', '2', '13'),
  7. (5, 'Project 5', '2024-04-20', '2024-05-20', '5', '16'),
  8. (6, 'Project 6', '2024-04-25', '2024-05-25', '6', '21'),
  9. (7, 'Project 7', '2024-04-30', '2024-05-30', '7', '23'),
  10. (8, 'Project 8', '2024-05-01', '2024-06-01', '2', '23'),
  11. (9, 'Project 9', '2024-05-05', '2024-06-05', '3', '14'),
  12. (10, 'Project 10', '2024-05-10', '2024-06-10', '4', '12');
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...