Prinme table sql
感谢不尽。 在线等。 Define a table primes that has a single column containing all prime numbers up to 100.
create table primes as
select
-- Example:
select * from primes;
-- Expected output:
-- 2
-- 3
-- 5
-- 7
-- 11
-- 13
-- 17
-- 19
-- 23
-- 29
-- 31
-- 37
-- 41
-- 43
-- 47
-- 53
-- 59
-- 61
-- 67
-- 71
-- 73
-- 79
-- 83
-- 89
-- 97